From 7d55b028f277fb5598da40e7ae8167ba0a4218a7 Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Sun, 14 Jun 2015 18:02:54 +0200 Subject: Windows: Use "PIM" instead of "PIN" in favorites XML file --- src/Mount/Favorites.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/Mount') diff --git a/src/Mount/Favorites.cpp b/src/Mount/Favorites.cpp index 1b6c59b3..382b238d 100644 --- a/src/Mount/Favorites.cpp +++ b/src/Mount/Favorites.cpp @@ -549,7 +549,12 @@ namespace VeraCrypt XmlGetAttributeText (xml, "label", label, sizeof (label)); favorite.Label = Utf8StringToWide (label); - XmlGetAttributeText (xml, "pin", label, sizeof (label)); + XmlGetAttributeText (xml, "pim", label, sizeof (label)); + if (strlen(label) == 0) + { + /* support old attribute name before it was changed to PIM*/ + XmlGetAttributeText (xml, "pin", label, sizeof (label)); + } favorite.Pin = strtol (label, NULL, 10); if (favorite.Pin < 0) favorite.Pin = 0; @@ -684,7 +689,7 @@ namespace VeraCrypt s += L" label=\"" + favorite.Label + L"\""; if (favorite.Pin > 0) - s += L" pin=\"" + IntToWideString(favorite.Pin) + L"\""; + s += L" pim=\"" + IntToWideString(favorite.Pin) + L"\""; if (favorite.ReadOnly) s += L" readonly=\"1\""; -- cgit v1.2.3