diff options
Diffstat (limited to 'loginutils/chpasswd.c')
-rw-r--r-- | loginutils/chpasswd.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/loginutils/chpasswd.c b/loginutils/chpasswd.c index f91ebdc68..a4a9a554f 100644 --- a/loginutils/chpasswd.c +++ b/loginutils/chpasswd.c @@ -11,11 +11,10 @@ #if ENABLE_GETOPT_LONG #include <getopt.h> -static const struct option chpasswd_opts[] = { - { "encrypted", no_argument, NULL, 'e' }, - { "md5", no_argument, NULL, 'm' }, - { NULL, 0, NULL, 0 } -}; +static const char chpasswd_opts[] = + "encrypted\0" No_argument "e" + "md5\0" No_argument "m" + "\0"; #endif #define OPT_ENC 1 |