Use True, not TRUE
authorJelmer Vernooij <jelmer@samba.org>
Sun, 23 Mar 2003 00:30:17 +0000 (00:30 +0000)
committerJelmer Vernooij <jelmer@samba.org>
Sun, 23 Mar 2003 00:30:17 +0000 (00:30 +0000)
(This used to be commit eeeeb37fc6de60928f7efdeb05bb2c6516f24441)

source3/lib/popt_common.c

index 03e39f5953e66b8a916dfab88585f578764669c2..3c9a87b361cda8f966c9d4e6876e05fdb9e35d2f 100644 (file)
@@ -348,8 +348,8 @@ static void popt_common_credentials_callback(poptContext con,
        struct poptOption popt_common_credentials[] = {
                { NULL, 0, POPT_ARG_CALLBACK|POPT_CBFLAG_PRE, popt_common_credentials_callback },
                { "user", 'U', POPT_ARG_STRING, NULL, 'U', "Set the network username", "USERNAME" },
-               { "no-pass", 'N', POPT_ARG_VAL, &cmdline_auth_info.got_pass, TRUE, "Don't ask for a password" },
-               { "kerberos", 'k', POPT_ARG_VAL, &cmdline_auth_info.use_kerberos, TRUE, "Use kerberos (active directory) authentication" },
+               { "no-pass", 'N', POPT_ARG_VAL, &cmdline_auth_info.got_pass, True, "Don't ask for a password" },
+               { "kerberos", 'k', POPT_ARG_VAL, &cmdline_auth_info.use_kerberos, True, "Use kerberos (active directory) authentication" },
                { "authentication-file", 'A', POPT_ARG_STRING, NULL, 'A', "Get the credentials from a file", "FILE" },
                { "workgroup", 'W', POPT_ARG_STRING, NULL, 'W', "Set the workgroup name", "WORKGROUP" },
                { 0 }