0
0
mirror of https://github.com/keepassxreboot/keepassxc.git synced 2024-09-20 20:23:05 +02:00

Adding second prompt for merge.

This commit is contained in:
Louis-Bertrand Varin 2017-03-12 14:17:03 -04:00 committed by Louis-Bertrand Varin
parent cf23343911
commit fd9d372e6a

View File

@ -52,7 +52,7 @@ int Merge::execute(int argc, char** argv)
return EXIT_FAILURE;
}
out << "Insert the database password\n> ";
out << "Insert the first database password\n> ";
out.flush();
static QTextStream inputTextStream(stdin, QIODevice::ReadOnly);
@ -64,6 +64,8 @@ int Merge::execute(int argc, char** argv)
key2 = *key1.clone();
}
else {
out << "Insert the second database password\n> ";
out.flush();
QString line2 = inputTextStream.readLine();
key2 = CompositeKey::readFromLine(line2);
}