summaryrefslogtreecommitdiffstats
path: root/source3/client/clitar.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/client/clitar.c')
-rw-r--r--source3/client/clitar.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/client/clitar.c b/source3/client/clitar.c
index 3d7f8ef55e..ad66b9916e 100644
--- a/source3/client/clitar.c
+++ b/source3/client/clitar.c
@@ -394,9 +394,11 @@ int cmd_setmode(void)
int mode = ATTR_SET;
TALLOC_CTX *ctx = PANIC_IF_NULL(talloc_new(NULL));
int err = 0;
+ bool ok;
- if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) {
+ ok = next_token_talloc(ctx, &cmd_ptr, &buf, NULL);
+ if (!ok) {
DBG(0, ("setmode <filename> <[+|-]rsha>\n"));
err = 1;
goto out;
@@ -406,7 +408,7 @@ int cmd_setmode(void)
"%s%s",
client_get_cur_dir(),
buf));
- if (!fname) {
+ if (fname == NULL) {
err = 1;
goto out;
}