diff options
author | Gerald Carter <jerry@samba.org> | 2000-07-10 19:56:15 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2000-07-10 19:56:15 +0000 |
commit | 997e113a566b3109daef3b77d9c366e7e41b38d4 (patch) | |
tree | 2c5ca71092ef743d0e10f0252eb6e02425394575 /source3 | |
parent | 64db2010fbc3c1eaaa2d9c7de5b56c1c9edb06e1 (diff) | |
download | samba-997e113a566b3109daef3b77d9c366e7e41b38d4.tar.gz samba-997e113a566b3109daef3b77d9c366e7e41b38d4.tar.bz2 samba-997e113a566b3109daef3b77d9c366e7e41b38d4.zip |
Fixed a bug in parsing the command line.
jerry
(This used to be commit ebcb7473c6b62266c30e276d02186d8e50a5629a)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/cmd_interp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/cmd_interp.c b/source3/lib/cmd_interp.c index f952a57e57..5dbb4f9074 100644 --- a/source3/lib/cmd_interp.c +++ b/source3/lib/cmd_interp.c @@ -1082,7 +1082,7 @@ static uint32 cmd_set(struct client_info *info, int argc, char *argv[]) case 'c': { - cmd_set_options |= CMD_STR | CMD_PASS; + cmd_set_options |= CMD_STR; cmd_str = optarg; break; } |