Re: [patch] fixed some messages

2002-08-20 Thread Simo Sorce

Fixed, thanks

On Tue, 2002-08-20 at 07:37, Josef Zlomek wrote:
> Hello,
> 
> this patch fixes some (debug) messages in source/client/client.c
> It is applicable to both HEAD and 2_2 branches, I'm not sure about other
> branches because I have not checked them out.
> 
> Patch follows.
> 
> Josef
> 
> 
> diff -urN samba.cvs/source/client/client.c samba.messages/source/client/client.c
> --- samba.cvs/source/client/client.c  Sat Jul 13 05:51:27 2002
> +++ samba.messages/source/client/client.c Tue Aug 20 07:28:30 2002
> @@ -307,7 +307,7 @@
>  
>   if (*fileselection && 
>   !mask_match(finfo->name,fileselection,False)) {
> - DEBUG(3,("match_match %s failed\n", finfo->name));
> + DEBUG(3,("mask_match %s failed\n", finfo->name));
>   return False;
>   }
>  
> @@ -695,7 +695,7 @@
>   }
>  
>   DEBUG(2,("getting file %s of size %.0f as %s ", 
> -  lname, (double)size, lname));
> +  rname, (double)size, lname));
>  
>   if(!(data = (char *)malloc(read_size))) { 
>   d_printf("malloc fail for size %d\n", read_size);
-- 
Simo Sorce - [EMAIL PROTECTED]
Samba Team - http://www.samba.org



[patch] fixed some messages

2002-08-20 Thread Josef Zlomek

Hello,

this patch fixes some (debug) messages in source/client/client.c
It is applicable to both HEAD and 2_2 branches, I'm not sure about other
branches because I have not checked them out.

Patch follows.

Josef


diff -urN samba.cvs/source/client/client.c samba.messages/source/client/client.c
--- samba.cvs/source/client/client.cSat Jul 13 05:51:27 2002
+++ samba.messages/source/client/client.c   Tue Aug 20 07:28:30 2002
@@ -307,7 +307,7 @@
 
if (*fileselection && 
!mask_match(finfo->name,fileselection,False)) {
-   DEBUG(3,("match_match %s failed\n", finfo->name));
+   DEBUG(3,("mask_match %s failed\n", finfo->name));
return False;
}
 
@@ -695,7 +695,7 @@
}
 
DEBUG(2,("getting file %s of size %.0f as %s ", 
-lname, (double)size, lname));
+rname, (double)size, lname));
 
if(!(data = (char *)malloc(read_size))) { 
d_printf("malloc fail for size %d\n", read_size);