VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Mount/Favorites.cpp9
1 files changed, 7 insertions, 2 deletions
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\"";