libarchive: open_zipped() does not need to check extensions for e.g. gzip
[oweals/busybox.git] / loginutils / vlock.c
index 0d0f3bca252a91240a8c4cd947833eee9cc70511..44b14e6bc460387c0e6ec23ed7714808e6934c3a 100644 (file)
 /* Fixed by Erik Andersen to do passwords the tinylogin way...
  * It now works with md5, sha1, etc passwords. */
 
+//usage:#define vlock_trivial_usage
+//usage:       "[-a]"
+//usage:#define vlock_full_usage "\n\n"
+//usage:       "Lock a virtual terminal. A password is required to unlock.\n"
+//usage:     "\n       -a      Lock all VTs"
+
 #include "libbb.h"
 
 #ifdef __linux__
@@ -98,11 +104,11 @@ int vlock_main(int argc UNUSED_PARAM, char **argv)
                                /* "s" if -a, else "": */ "s" + !option_mask32,
                                pw->pw_name
                );
-               if (correct_password(pw)) {
+               if (ask_and_check_password(pw) > 0) {
                        break;
                }
-               bb_do_delay(FAIL_DELAY);
-               puts("Password incorrect");
+               bb_do_delay(LOGIN_FAIL_DELAY);
+               puts("Incorrect password");
        }
 
 #ifdef __linux__