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 | ebcb7473c6b62266c30e276d02186d8e50a5629a (patch) | |
tree | 9da9a01a34e7731c5334e413a913bb6db5088ba6 | |
parent | 4f431ea1f5d1d3b868d0bb56a299070e608c2512 (diff) | |
download | samba-ebcb7473c6b62266c30e276d02186d8e50a5629a.tar.gz samba-ebcb7473c6b62266c30e276d02186d8e50a5629a.tar.xz samba-ebcb7473c6b62266c30e276d02186d8e50a5629a.zip |
Fixed a bug in parsing the command line.
jerry
-rw-r--r-- | source/lib/cmd_interp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/cmd_interp.c b/source/lib/cmd_interp.c index f952a57e578..5dbb4f90746 100644 --- a/source/lib/cmd_interp.c +++ b/source/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; } |