The branch, master has been updated
       via  971f6a4... s3: Fix the format string for smbcontrol pool-usage
      from  f461a72... idl: switched to using the WSPP names for the 
'neighbour' DRS options

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 971f6a4a5bd348b2e45ad8e9f354c714c8cf9e2c
Author: Volker Lendecke <[email protected]>
Date:   Sun Jan 17 23:07:39 2010 +0100

    s3: Fix the format string for smbcontrol pool-usage
    
    With the dot I have seen printf to not print anything

-----------------------------------------------------------------------

Summary of changes:
 source3/utils/smbcontrol.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/utils/smbcontrol.c b/source3/utils/smbcontrol.c
index 7fab6eb..4ccea26 100644
--- a/source3/utils/smbcontrol.c
+++ b/source3/utils/smbcontrol.c
@@ -122,7 +122,7 @@ static void print_string_cb(struct messaging_context *msg,
                            struct server_id pid,
                            DATA_BLOB *data)
 {
-       printf("%.*s", (int)data->length, (const char *)data->data);
+       printf("%*s", (int)data->length, (const char *)data->data);
        num_replies++;
 }
 


-- 
Samba Shared Repository

Reply via email to