diff options
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 96b9837fef..f25ed1623b 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -94,10 +94,10 @@ static pstring fileselection = ""; extern file_info def_finfo; /* timing globals */ -SMB_BIG_UINT get_total_size = 0; -unsigned int get_total_time_ms = 0; -static SMB_BIG_UINT put_total_size = 0; -static unsigned int put_total_time_ms = 0; +int get_total_size = 0; +int get_total_time_ms = 0; +static int put_total_size = 0; +static int put_total_time_ms = 0; /* totals globals */ static double dir_total; @@ -2502,6 +2502,7 @@ static void usage(char *pname) d_printf("\t-N don't ask for a password\n"); d_printf("\t-n netbios name. Use this name as my netbios name\n"); d_printf("\t-d debuglevel set the debuglevel\n"); + d_printf("\t-P connect to service as a printer\n"); d_printf("\t-p port connect to the specified port\n"); d_printf("\t-l log basename. Basename for log/debug files\n"); d_printf("\t-h Print this help message.\n"); |