diff options
author | Volker Lendecke <vl@samba.org> | 2010-01-17 23:07:39 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-01-17 23:10:37 +0100 |
commit | 971f6a4a5bd348b2e45ad8e9f354c714c8cf9e2c (patch) | |
tree | c5c86b5687ab2b5d55527a3b987eb242dd44d6c8 /source3 | |
parent | f461a72ec3aa990c357b754b5311add4bba48485 (diff) | |
download | samba-971f6a4a5bd348b2e45ad8e9f354c714c8cf9e2c.tar.gz samba-971f6a4a5bd348b2e45ad8e9f354c714c8cf9e2c.tar.bz2 samba-971f6a4a5bd348b2e45ad8e9f354c714c8cf9e2c.zip |
s3: Fix the format string for smbcontrol pool-usage
With the dot I have seen printf to not print anything
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/smbcontrol.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/smbcontrol.c b/source3/utils/smbcontrol.c index 7fab6eb4b2..4ccea26c3d 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++; } |