diff options
author | Richard Sharpe <sharpe@samba.org> | 2004-10-27 17:03:09 +0000 |
---|---|---|
committer | Richard Sharpe <sharpe@samba.org> | 2004-10-27 17:03:09 +0000 |
commit | 142d3f10d25e87e364ce01cd56c771628b7db14a (patch) | |
tree | 552e7a907445e795aa0150780c721ea7dcfc97b0 /source/client | |
parent | 10d7fc1ca989240b4373e1020bc8466211c63dfa (diff) | |
download | samba-142d3f10d25e87e364ce01cd56c771628b7db14a.tar.gz samba-142d3f10d25e87e364ce01cd56c771628b7db14a.tar.xz samba-142d3f10d25e87e364ce01cd56c771628b7db14a.zip |
r3292: A fix from Narayana Pattipati <narayana[dot]pattipati[at]wipro\dotty/com> for
Solaris to ensure we distinguish properly between 5.1 and 5.10.
Diffstat (limited to 'source/client')
-rw-r--r-- | source/client/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/client/client.c b/source/client/client.c index c2fec17d7ec..311eaef8f21 100644 --- a/source/client/client.c +++ b/source/client/client.c @@ -701,7 +701,7 @@ static int do_get(char *rname, char *lname, BOOL reget) return 1; } - DEBUG(2,("getting file %s of size %.0f as %s ", + DEBUG(1,("getting file %s of size %.0f as %s ", rname, (double)size, lname)); if(!(data = (char *)malloc(read_size))) { @@ -758,7 +758,7 @@ static int do_get(char *rname, char *lname, BOOL reget) get_total_time_ms += this_time; get_total_size += nread; - DEBUG(2,("(%3.1f kb/s) (average %3.1f kb/s)\n", + DEBUG(1,("(%3.1f kb/s) (average %3.1f kb/s)\n", nread / (1.024*this_time + 1.0e-4), get_total_size / (1.024*get_total_time_ms))); } |