summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2003-03-23 00:30:17 +0000
committerJelmer Vernooij <jelmer@samba.org>2003-03-23 00:30:17 +0000
commita76d82616aae98758a009dcd4c1cd5e4768b273d (patch)
treed7d46828178f3deb3d37e27ec6c5979f62adaf4a /source3/lib
parent73a7abf77d5c3f03dcd7947decf6b7e2dbcfd4d5 (diff)
downloadsamba-a76d82616aae98758a009dcd4c1cd5e4768b273d.tar.gz
samba-a76d82616aae98758a009dcd4c1cd5e4768b273d.tar.bz2
samba-a76d82616aae98758a009dcd4c1cd5e4768b273d.zip
Use True, not TRUE
(This used to be commit eeeeb37fc6de60928f7efdeb05bb2c6516f24441)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/popt_common.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/popt_common.c b/source3/lib/popt_common.c
index 03e39f5953..3c9a87b361 100644
--- a/source3/lib/popt_common.c
+++ b/source3/lib/popt_common.c
@@ -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 }