1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

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
This commit is contained in:
Michael Adam 2013-08-21 16:12:30 +02:00 committed by Jeremy Allison
parent cc82c161bf
commit db1d0349c4

View File

@ -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;
}
}