Version in base suite: 5.9.1-1+deb11u1 Base version: strongswan_5.9.1-1+deb11u1 Target version: strongswan_5.9.1-1+deb11u2 Base file: /srv/ftp-master.debian.org/ftp/pool/main/s/strongswan/strongswan_5.9.1-1+deb11u1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/s/strongswan/strongswan_5.9.1-1+deb11u2.dsc changelog | 8 gbp.conf | 2 patches/0008-eap-authenticator-Enforce-failure-if-MSK-generation-.patch | 147 ++++++++++ patches/series | 1 po/cs.po | 2 po/da.po | 2 po/de.po | 2 po/es.po | 2 po/eu.po | 2 po/fi.po | 2 po/fr.po | 2 po/gl.po | 2 po/it.po | 2 po/ja.po | 2 po/nb.po | 2 po/nl.po | 2 po/pl.po | 2 po/pt.po | 2 po/pt_BR.po | 2 po/ru.po | 2 po/sv.po | 2 po/templates.pot | 2 po/tr.po | 2 po/vi.po | 2 24 files changed, 177 insertions(+), 21 deletions(-) diff -Nru strongswan-5.9.1/debian/changelog strongswan-5.9.1/debian/changelog --- strongswan-5.9.1/debian/changelog 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/changelog 2022-01-21 14:55:38.000000000 +0000 @@ -1,3 +1,11 @@ +strongswan (5.9.1-1+deb11u2) bullseye-security; urgency=medium + + * gbp: revert upstream branch name change + * eap-authenticator: Enforce failure if MSK generation fails + - Fix incorrect handling of Early EAP-Success Messages (CVE-2021-45079) + + -- Yves-Alexis Perez Fri, 21 Jan 2022 15:55:38 +0100 + strongswan (5.9.1-1+deb11u1) bullseye-security; urgency=medium * Reject RSASSA-PSS params with negative salt length diff -Nru strongswan-5.9.1/debian/gbp.conf strongswan-5.9.1/debian/gbp.conf --- strongswan-5.9.1/debian/gbp.conf 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/gbp.conf 2022-01-21 14:55:38.000000000 +0000 @@ -1,4 +1,4 @@ [DEFAULT] pristine-tar = True debian-branch = debian/bullseye-security -upstream-branch = upstream/5.9 +upstream-branch = upstream/latest diff -Nru strongswan-5.9.1/debian/patches/0008-eap-authenticator-Enforce-failure-if-MSK-generation-.patch strongswan-5.9.1/debian/patches/0008-eap-authenticator-Enforce-failure-if-MSK-generation-.patch --- strongswan-5.9.1/debian/patches/0008-eap-authenticator-Enforce-failure-if-MSK-generation-.patch 1970-01-01 00:00:00.000000000 +0000 +++ strongswan-5.9.1/debian/patches/0008-eap-authenticator-Enforce-failure-if-MSK-generation-.patch 2022-01-21 14:55:38.000000000 +0000 @@ -0,0 +1,147 @@ +From: Tobias Brunner +Date: Tue, 14 Dec 2021 10:51:35 +0100 +Subject: eap-authenticator: Enforce failure if MSK generation fails + +Without this, the authentication succeeded if the server sent an early +EAP-Success message for mutual, key-generating EAP methods like EAP-TLS, +which may be used in EAP-only scenarios but would complete without server +or client authentication. For clients configured for such EAP-only +scenarios, a rogue server could capture traffic after the tunnel is +established or even access hosts behind the client. For non-mutual EAP +methods, public key server authentication has been enforced for a while. + +A server previously could also crash a client by sending an EAP-Success +immediately without initiating an actual EAP method. + +Fixes: 0706c39cda52 ("added support for EAP methods not establishing an MSK") +Fixes: CVE-2021-45079 +--- + src/libcharon/plugins/eap_gtc/eap_gtc.c | 2 +- + src/libcharon/plugins/eap_md5/eap_md5.c | 2 +- + src/libcharon/plugins/eap_radius/eap_radius.c | 4 ++- + src/libcharon/sa/eap/eap_method.h | 8 +++++- + .../sa/ikev2/authenticators/eap_authenticator.c | 32 +++++++++++++++++++--- + 5 files changed, 40 insertions(+), 8 deletions(-) + +diff --git a/src/libcharon/plugins/eap_gtc/eap_gtc.c b/src/libcharon/plugins/eap_gtc/eap_gtc.c +index 95ba090..cffb622 100644 +--- a/src/libcharon/plugins/eap_gtc/eap_gtc.c ++++ b/src/libcharon/plugins/eap_gtc/eap_gtc.c +@@ -195,7 +195,7 @@ METHOD(eap_method_t, get_type, eap_type_t, + METHOD(eap_method_t, get_msk, status_t, + private_eap_gtc_t *this, chunk_t *msk) + { +- return FAILED; ++ return NOT_SUPPORTED; + } + + METHOD(eap_method_t, get_identifier, uint8_t, +diff --git a/src/libcharon/plugins/eap_md5/eap_md5.c b/src/libcharon/plugins/eap_md5/eap_md5.c +index ab5f7ff..3a92ad7 100644 +--- a/src/libcharon/plugins/eap_md5/eap_md5.c ++++ b/src/libcharon/plugins/eap_md5/eap_md5.c +@@ -213,7 +213,7 @@ METHOD(eap_method_t, get_type, eap_type_t, + METHOD(eap_method_t, get_msk, status_t, + private_eap_md5_t *this, chunk_t *msk) + { +- return FAILED; ++ return NOT_SUPPORTED; + } + + METHOD(eap_method_t, is_mutual, bool, +diff --git a/src/libcharon/plugins/eap_radius/eap_radius.c b/src/libcharon/plugins/eap_radius/eap_radius.c +index 2dc7a42..5336dea 100644 +--- a/src/libcharon/plugins/eap_radius/eap_radius.c ++++ b/src/libcharon/plugins/eap_radius/eap_radius.c +@@ -733,7 +733,9 @@ METHOD(eap_method_t, get_msk, status_t, + *out = msk; + return SUCCESS; + } +- return FAILED; ++ /* we assume the selected method did not establish an MSK, if it failed ++ * to establish one, process() would have failed */ ++ return NOT_SUPPORTED; + } + + METHOD(eap_method_t, get_identifier, uint8_t, +diff --git a/src/libcharon/sa/eap/eap_method.h b/src/libcharon/sa/eap/eap_method.h +index 0b5218d..3356483 100644 +--- a/src/libcharon/sa/eap/eap_method.h ++++ b/src/libcharon/sa/eap/eap_method.h +@@ -114,10 +114,16 @@ struct eap_method_t { + * Not all EAP methods establish a shared secret. For implementations of + * the EAP-Identity method, get_msk() returns the received identity. + * ++ * @note Returning NOT_SUPPORTED is important for implementations of EAP ++ * methods that don't establish an MSK. In particular as client because ++ * key-generating EAP methods MUST fail to process EAP-Success messages if ++ * no MSK is established. ++ * + * @param msk chunk receiving internal stored MSK + * @return +- * - SUCCESS, or ++ * - SUCCESS, if MSK is established + * - FAILED, if MSK not established (yet) ++ * - NOT_SUPPORTED, for non-MSK-establishing methods + */ + status_t (*get_msk) (eap_method_t *this, chunk_t *msk); + +diff --git a/src/libcharon/sa/ikev2/authenticators/eap_authenticator.c b/src/libcharon/sa/ikev2/authenticators/eap_authenticator.c +index e1e6cd7..87548fc 100644 +--- a/src/libcharon/sa/ikev2/authenticators/eap_authenticator.c ++++ b/src/libcharon/sa/ikev2/authenticators/eap_authenticator.c +@@ -305,9 +305,17 @@ static eap_payload_t* server_process_eap(private_eap_authenticator_t *this, + this->method->destroy(this->method); + return server_initiate_eap(this, FALSE); + } +- if (this->method->get_msk(this->method, &this->msk) == SUCCESS) ++ switch (this->method->get_msk(this->method, &this->msk)) + { +- this->msk = chunk_clone(this->msk); ++ case SUCCESS: ++ this->msk = chunk_clone(this->msk); ++ break; ++ case NOT_SUPPORTED: ++ break; ++ case FAILED: ++ default: ++ DBG1(DBG_IKE, "failed to establish MSK"); ++ goto failure; + } + if (vendor) + { +@@ -326,6 +334,7 @@ static eap_payload_t* server_process_eap(private_eap_authenticator_t *this, + return eap_payload_create_code(EAP_SUCCESS, in->get_identifier(in)); + case FAILED: + default: ++failure: + /* type might have changed for virtual methods */ + type = this->method->get_type(this->method, &vendor); + if (vendor) +@@ -661,9 +670,24 @@ METHOD(authenticator_t, process_client, status_t, + uint32_t vendor; + auth_cfg_t *cfg; + +- if (this->method->get_msk(this->method, &this->msk) == SUCCESS) ++ if (!this->method) + { +- this->msk = chunk_clone(this->msk); ++ DBG1(DBG_IKE, "received unexpected %N", ++ eap_code_names, eap_payload->get_code(eap_payload)); ++ return FAILED; ++ } ++ switch (this->method->get_msk(this->method, &this->msk)) ++ { ++ case SUCCESS: ++ this->msk = chunk_clone(this->msk); ++ break; ++ case NOT_SUPPORTED: ++ break; ++ case FAILED: ++ default: ++ DBG1(DBG_IKE, "received %N but failed to establish MSK", ++ eap_code_names, eap_payload->get_code(eap_payload)); ++ return FAILED; + } + type = this->method->get_type(this->method, &vendor); + if (vendor) diff -Nru strongswan-5.9.1/debian/patches/series strongswan-5.9.1/debian/patches/series --- strongswan-5.9.1/debian/patches/series 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/patches/series 2022-01-21 14:55:38.000000000 +0000 @@ -5,3 +5,4 @@ dont-load-kernel-libipsec-plugin-by-default.patch 0006-cert-cache-Prevent-crash-due-to-integer-overflow-sig.patch 0007-Reject-RSASSA-PSS-params-with-negative-salt-length.patch +0008-eap-authenticator-Enforce-failure-if-MSK-generation-.patch diff -Nru strongswan-5.9.1/debian/po/cs.po strongswan-5.9.1/debian/po/cs.po --- strongswan-5.9.1/debian/po/cs.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/cs.po 2022-01-21 14:55:38.000000000 +0000 @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: strongswan\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2013-10-28 14:42+0100\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" diff -Nru strongswan-5.9.1/debian/po/da.po strongswan-5.9.1/debian/po/da.po --- strongswan-5.9.1/debian/po/da.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/da.po 2022-01-21 14:55:38.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: strongswan\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2013-10-06 12:42+0000\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" diff -Nru strongswan-5.9.1/debian/po/de.po strongswan-5.9.1/debian/po/de.po --- strongswan-5.9.1/debian/po/de.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/de.po 2022-01-21 14:55:38.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: strongswan 4.4.0-1\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2013-11-02 15:40+0100\n" "Last-Translator: Helge Kreutzmann \n" "Language-Team: German \n" diff -Nru strongswan-5.9.1/debian/po/es.po strongswan-5.9.1/debian/po/es.po --- strongswan-5.9.1/debian/po/es.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/es.po 2022-01-21 14:55:38.000000000 +0000 @@ -31,7 +31,7 @@ msgstr "" "Project-Id-Version: strongswan 4.4.1-5\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2013-12-17 17:19-0300\n" "Last-Translator: Matías Bellone \n" "Language-Team: Debian l10n Spanish \n" diff -Nru strongswan-5.9.1/debian/po/eu.po strongswan-5.9.1/debian/po/eu.po --- strongswan-5.9.1/debian/po/eu.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/eu.po 2022-01-21 14:55:38.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: strongswan_4.4.1-5.1_eu\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2013-10-15 21:41+0200\n" "Last-Translator: Iñaki Larrañaga Murgoitio \n" "Language-Team: Basque \n" diff -Nru strongswan-5.9.1/debian/po/fi.po strongswan-5.9.1/debian/po/fi.po --- strongswan-5.9.1/debian/po/fi.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/fi.po 2022-01-21 14:55:38.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: strongswan\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2009-05-25 14:49+0100\n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \n" diff -Nru strongswan-5.9.1/debian/po/fr.po strongswan-5.9.1/debian/po/fr.po --- strongswan-5.9.1/debian/po/fr.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/fr.po 2022-01-21 14:55:38.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: strongswan\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2010-06-24 22:17+0200\n" "Last-Translator: Christian Perrier \n" "Language-Team: French \n" diff -Nru strongswan-5.9.1/debian/po/gl.po strongswan-5.9.1/debian/po/gl.po --- strongswan-5.9.1/debian/po/gl.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/gl.po 2022-01-21 14:55:38.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: templates_[kI6655]\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2009-05-25 14:50+0100\n" "Last-Translator: marce villarino \n" "Language-Team: Galician \n" diff -Nru strongswan-5.9.1/debian/po/it.po strongswan-5.9.1/debian/po/it.po --- strongswan-5.9.1/debian/po/it.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/it.po 2022-01-21 14:55:38.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: strongswan\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2013-11-09 13:41+0200\n" "Last-Translator: Beatrice Torracca \n" "Language-Team: Italian \n" diff -Nru strongswan-5.9.1/debian/po/ja.po strongswan-5.9.1/debian/po/ja.po --- strongswan-5.9.1/debian/po/ja.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/ja.po 2022-01-21 14:55:38.000000000 +0000 @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: strongswan 4.4.1-4\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2013-02-07 21:28+0900\n" "Last-Translator: Hideki Yamane \n" "Language-Team: Japanese \n" diff -Nru strongswan-5.9.1/debian/po/nb.po strongswan-5.9.1/debian/po/nb.po --- strongswan-5.9.1/debian/po/nb.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/nb.po 2022-01-21 14:55:38.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: nb\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2013-10-06 17:37+0200\n" "Last-Translator: Bjørn Steensrud \n" "Language-Team: Norwegian Bokmål \n" diff -Nru strongswan-5.9.1/debian/po/nl.po strongswan-5.9.1/debian/po/nl.po --- strongswan-5.9.1/debian/po/nl.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/nl.po 2022-01-21 14:55:38.000000000 +0000 @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: strongswan 4.5.0-1\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2014-09-24 18:39+0200\n" "Last-Translator: Frans Spiesschaert \n" "Language-Team: Debian Dutch l10n Team \n" diff -Nru strongswan-5.9.1/debian/po/pl.po strongswan-5.9.1/debian/po/pl.po --- strongswan-5.9.1/debian/po/pl.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/pl.po 2022-01-21 14:55:38.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2012-01-31 15:36+0100\n" "Last-Translator: Michał Kułach \n" "Language-Team: Polish \n" diff -Nru strongswan-5.9.1/debian/po/pt.po strongswan-5.9.1/debian/po/pt.po --- strongswan-5.9.1/debian/po/pt.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/pt.po 2022-01-21 14:55:38.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: strongswan 5.1.0-3\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2013-11-18 00:33+0000\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese \n" diff -Nru strongswan-5.9.1/debian/po/pt_BR.po strongswan-5.9.1/debian/po/pt_BR.po --- strongswan-5.9.1/debian/po/pt_BR.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/pt_BR.po 2022-01-21 14:55:38.000000000 +0000 @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: strongswan 5.1.3-4\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2014-06-25 18:13-0300\n" "Last-Translator: Adriano Rafael Gomes \n" "Language-Team: Brazilian Portuguese \n" "Language-Team: Russian \n" diff -Nru strongswan-5.9.1/debian/po/sv.po strongswan-5.9.1/debian/po/sv.po --- strongswan-5.9.1/debian/po/sv.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/sv.po 2022-01-21 14:55:38.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: strongswan_sv\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2013-10-07 09:05+0100\n" "Last-Translator: Martin Bagge / brother \n" "Language-Team: Swedish \n" diff -Nru strongswan-5.9.1/debian/po/templates.pot strongswan-5.9.1/debian/po/templates.pot --- strongswan-5.9.1/debian/po/templates.pot 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/templates.pot 2022-01-21 14:55:38.000000000 +0000 @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: strongswan\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff -Nru strongswan-5.9.1/debian/po/tr.po strongswan-5.9.1/debian/po/tr.po --- strongswan-5.9.1/debian/po/tr.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/tr.po 2022-01-21 14:55:38.000000000 +0000 @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: strongswan\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2013-10-24 11:17+0200\n" "Last-Translator: Atila KOÇ \n" "Language-Team: Türkçe \n" diff -Nru strongswan-5.9.1/debian/po/vi.po strongswan-5.9.1/debian/po/vi.po --- strongswan-5.9.1/debian/po/vi.po 2021-10-14 20:36:24.000000000 +0000 +++ strongswan-5.9.1/debian/po/vi.po 2022-01-21 14:55:38.000000000 +0000 @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: strongswan 4.4.0-1\n" "Report-Msgid-Bugs-To: strongswan@packages.debian.org\n" -"POT-Creation-Date: 2021-10-15 13:24+0200\n" +"POT-Creation-Date: 2022-01-21 15:56+0100\n" "PO-Revision-Date: 2010-10-03 19:22+1030\n" "Last-Translator: Clytie Siddall \n" "Language-Team: Vietnamese \n"