diff options
author | Andrew Bartlett <abartlet@samba.org> | 2007-05-22 05:22:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:52:46 -0500 |
commit | 615fea1c5c6e742b6e2c9d7a79a7f76435d0788c (patch) | |
tree | cc6823981c41f939cd53b54b2af34fe416102918 /source4/lib/cmdline | |
parent | c83c39909ed4979d455f94c9b842b542fb38e76b (diff) | |
download | samba-615fea1c5c6e742b6e2c9d7a79a7f76435d0788c.tar.gz samba-615fea1c5c6e742b6e2c9d7a79a7f76435d0788c.tar.bz2 samba-615fea1c5c6e742b6e2c9d7a79a7f76435d0788c.zip |
r23064: Clarify comment and indent
(This used to be commit 607e8409f86b28c51a058555021cd45c1cb72a26)
Diffstat (limited to 'source4/lib/cmdline')
-rw-r--r-- | source4/lib/cmdline/popt_credentials.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/source4/lib/cmdline/popt_credentials.c b/source4/lib/cmdline/popt_credentials.c index 6f1c40c472..f9a914326f 100644 --- a/source4/lib/cmdline/popt_credentials.c +++ b/source4/lib/cmdline/popt_credentials.c @@ -71,19 +71,19 @@ static void popt_common_credentials_callback(poptContext con, switch(opt->val) { case 'U': - { - char *lp; - - cli_credentials_parse_string(cmdline_credentials, arg, CRED_SPECIFIED); - /* This breaks the abstraction, including the const above */ - if ((lp=strchr_m(arg,'%'))) { - lp[0]='\0'; - lp++; - /* Try to prevent this showing up in ps */ - memset(lp,0,strlen(lp)); - } + { + char *lp; + + cli_credentials_parse_string(cmdline_credentials, arg, CRED_SPECIFIED); + /* This breaks the abstraction, including the const above */ + if ((lp=strchr_m(arg,'%'))) { + lp[0]='\0'; + lp++; + /* Try to prevent this showing up in ps */ + memset(lp,0,strlen(lp)); } - break; + } + break; case OPT_PASSWORD: cli_credentials_set_password(cmdline_credentials, arg, CRED_SPECIFIED); |