From 5e34ff29bcc870936ab18172f438a34d042d4e03 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Tue, 21 Apr 2009 11:09:40 +0000 Subject: *: mass renaming of USE_XXXX to IF_XXXX and SKIP_XXXX to IF_NOT_XXXX - the second one was especially badly named. It was not skipping anything! --- loginutils/chpasswd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'loginutils/chpasswd.c') diff --git a/loginutils/chpasswd.c b/loginutils/chpasswd.c index 4bffbe83f..68b398068 100644 --- a/loginutils/chpasswd.c +++ b/loginutils/chpasswd.c @@ -29,7 +29,7 @@ int chpasswd_main(int argc UNUSED_PARAM, char **argv) bb_error_msg_and_die(bb_msg_perm_denied_are_you_root); opt_complementary = "m--e:e--m"; - USE_GETOPT_LONG(applet_long_options = chpasswd_longopts;) + IF_GETOPT_LONG(applet_long_options = chpasswd_longopts;) opt = getopt32(argv, "em"); while ((name = xmalloc_fgetline(stdin)) != NULL) { -- cgit v1.2.3