libarchive: open_zipped() does not need to check extensions for e.g. gzip
[oweals/busybox.git] / loginutils / vlock.c
index efad63ff38f08ee06bd7b1cf36c6c82e3088cfea..44b14e6bc460387c0e6ec23ed7714808e6934c3a 100644 (file)
@@ -19,7 +19,6 @@
 //usage:       "[-a]"
 //usage:#define vlock_full_usage "\n\n"
 //usage:       "Lock a virtual terminal. A password is required to unlock.\n"
-//usage:     "\nOptions:"
 //usage:     "\n       -a      Lock all VTs"
 
 #include "libbb.h"
@@ -105,7 +104,7 @@ 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(LOGIN_FAIL_DELAY);