diff options
author | Jeremy Allison <jra@samba.org> | 2008-01-18 13:47:10 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2008-01-18 13:47:10 -0800 |
commit | b97fbf58886427fbb7f3181694bf6f9648f5d0f4 (patch) | |
tree | 1368376bd45ef18f51da221b9fe4cbaf54282592 /source3 | |
parent | bb707b1db6add166a7887284281fa4b65776be08 (diff) | |
download | samba-b97fbf58886427fbb7f3181694bf6f9648f5d0f4.tar.gz samba-b97fbf58886427fbb7f3181694bf6f9648f5d0f4.tar.bz2 samba-b97fbf58886427fbb7f3181694bf6f9648f5d0f4.zip |
Fix error message for new allinfo command.
Jeremy.
(This used to be commit 3a1bcbfa7ca2b55265eb486e2b7c740e04775698)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/client/client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 59ca2e0adc..28b4a2b24b 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1600,7 +1600,7 @@ static int cmd_allinfo(void) } if (!next_token_talloc(ctx, &cmd_ptr, &buf, NULL)) { - d_printf("altname <file>\n"); + d_printf("allinfo <file>\n"); return 1; } name = talloc_asprintf_append(name, buf); |