diff options
author | Michael Adam <obnox@samba.org> | 2013-08-21 16:12:30 +0200 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2013-08-21 21:49:44 +0200 |
commit | db1d0349c4d898141a39f515c690e21409448d56 (patch) | |
tree | eaba56f50b5b4b5e8c28843bb31806ef1402adf1 /source3/client | |
parent | cc82c161bf09226696fdfb428f6ba93caa751de5 (diff) | |
download | samba-db1d0349c4d898141a39f515c690e21409448d56.tar.gz samba-db1d0349c4d898141a39f515c690e21409448d56.tar.bz2 samba-db1d0349c4d898141a39f515c690e21409448d56.zip |
client: add missing newlines to error messages for invalid iosize parameter.
Signed-off-by: Michael Adam <obnox@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Autobuild-User(master): Jeremy Allison <jra@samba.org>
Autobuild-Date(master): Wed Aug 21 21:49:45 CEST 2013 on sn-devel-104
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 581b9c6115..bdf6c50647 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -4551,11 +4551,11 @@ int cmd_iosize(void) if (smb_encrypt && (iosize < 0 || iosize > 0xFC00)) { d_printf("iosize out of range for encrypted " "connection (min = 0 (default), " - "max = 130048 (0x1FC00)"); + "max = 130048 (0x1FC00)\n"); return 1; } else if (!smb_encrypt && (iosize < 0 || iosize > 0xFFFF00)) { d_printf("iosize out of range (min = 0 (default), " - "max = 16776960 (0xFFFF00)"); + "max = 16776960 (0xFFFF00)\n"); return 1; } } |