]> vaikene.ee Git - evaf/commitdiff
Fixed setting the password length argument that was not possible to change once store...
authorEnar Väikene <enar@vaikene.net>
Thu, 17 Nov 2011 09:15:21 +0000 (11:15 +0200)
committerEnar Väikene <enar@vaikene.net>
Thu, 17 Nov 2011 09:15:21 +0000 (11:15 +0200)
src/apps/PswGen/CLI/cli.cpp
src/apps/PswGen/CLI/version.h

index fbc8450ebe37f2ec2ddba2170994a536587df353..1b59e8b25ba2189523053fe9c4d9b559639cb4bb 100644 (file)
@@ -159,7 +159,7 @@ void Module::generatePassword()
 {
     QString masterPassword;
     QString appName;
-    int passwordLength = DefaultPasswordLength;
+    int passwordLength = 0;
 
     // Process command-line arguments
     QStringList args = QCoreApplication::arguments();
@@ -199,10 +199,14 @@ void Module::generatePassword()
     QExplicitlySharedDataPointer<PswGen::Storage::Data> data;
     if (mStorage) {
         data = mStorage->query(appName);
-        if (data)
+        if (data && passwordLength == 0)
             passwordLength = data->length();
     }
 
+    // If the length argument is still not initialized, use the default length value
+    if (!passwordLength)
+        passwordLength = DefaultPasswordLength;
+
     // Generate password
     QString password = mGenerator->generatePassword(appName, masterPassword, passwordLength);
     cout << "Generated password : " << password << endl;
@@ -211,6 +215,8 @@ void Module::generatePassword()
     if (mStorage) {
         if (!data)
             data = new Storage::Data(appName, passwordLength);
+        else
+            data->setLength(passwordLength);
         mStorage->save(appName, data);
     }
 }
index 2707d5a3348f74fa4a5aba8723068eceecb49d23..348e78a6b48b81057eeb9938c01edfd49432f0f8 100644 (file)
 /**
  * Module/library version number in the form major,minor,release,build
  */
-#define VER_FILE_VERSION                0,1,1,1
+#define VER_FILE_VERSION                0,1,1,2
 
 /**
  * Module/library version number in the string format (shall end with \0)
  */
-#define VER_FILE_VERSION_STR            "0.1.1.1\0"
+#define VER_FILE_VERSION_STR            "0.1.1.2\0"
 
 /**
  * Module/library name (shall end with \0)