From db1d0349c4d898141a39f515c690e21409448d56 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 21 Aug 2013 16:12:30 +0200 Subject: client: add missing newlines to error messages for invalid iosize parameter. Signed-off-by: Michael Adam Reviewed-by: Jeremy Allison Autobuild-User(master): Jeremy Allison Autobuild-Date(master): Wed Aug 21 21:49:45 CEST 2013 on sn-devel-104 --- source3/client/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/client') 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; } } -- cgit