]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
client: add missing newlines to error messages for invalid iosize parameter.
authorMichael Adam <obnox@samba.org>
Wed, 21 Aug 2013 14:12:30 +0000 (16:12 +0200)
committerJeremy Allison <jra@samba.org>
Wed, 21 Aug 2013 19:49:44 +0000 (21:49 +0200)
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

source3/client/client.c

index 581b9c6115b04d3c6abf9801d911bb93b91ea7d4..bdf6c506471d476ec46ad6370a29e0a78cfd6acd 100644 (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;
                }
        }