]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
s3:utils: Fix debug message formatting
authorJoseph Sutton <josephsutton@catalyst.net.nz>
Thu, 6 Jul 2023 03:57:08 +0000 (15:57 +1200)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 8 Aug 2023 04:39:37 +0000 (04:39 +0000)
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
source3/utils/net_rpc.c
source3/utils/smbget.c

index a20d042ad5889858ae7e5e642e3595cf0a9f5888..a29db48ac476df9f6ad0705a73446f862b551906 100644 (file)
@@ -6500,8 +6500,8 @@ static NTSTATUS rpc_trustdom_get_pdc(struct net_context *c,
                return NT_STATUS_OK;
        }
 
-       DEBUG(1,("NetServerEnum2 error: Couldn't find primary domain controller\
-                for domain %s\n", domain_name));
+       DEBUG(1,("NetServerEnum2 error: Couldn't find primary domain controller "
+                "for domain %s\n", domain_name));
 
        /* Try netr_GetDcName */
 
@@ -6524,8 +6524,8 @@ static NTSTATUS rpc_trustdom_get_pdc(struct net_context *c,
                return status;
        }
 
-       DEBUG(1,("netr_GetDcName error: Couldn't find primary domain controller\
-                for domain %s\n", domain_name));
+       DEBUG(1,("netr_GetDcName error: Couldn't find primary domain controller "
+                "for domain %s\n", domain_name));
 
        if (!NT_STATUS_IS_OK(status)) {
                return status;
index 5c99dcf918a3eb426d28c5ed1a4a6036da4c7202..34a9839048e5e8809380cfac027a74e4d9604d5d 100644 (file)
@@ -593,8 +593,8 @@ static bool smb_download_file(const char *base, const char *name,
                if (opt.blocksize > max_block_size) {
                        if (opt.blocksize != SMB_DEFAULT_BLOCKSIZE) {
                                fprintf(stderr,
-                                       "Warning: Overriding block size to %d \
-                                        due to limit-rate", max_block_size);
+                                       "Warning: Overriding block size to %d "
+                                       "due to limit-rate", max_block_size);
                        }
                        opt.blocksize = max_block_size;
                }