Custom Query (292 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (19 - 21 of 292)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Ticket Resolution Summary Owner Reporter
#20 fixed Directory containig DBCS chars is not listed guest
Description

Hi/2.

If directory name contain DBCS chars, its contents is not listed.

This goes for server and client.

That is, client(VISTA) cannot list the directory of samba server(OS/2), and client(OS/2) cannot list the directory of server(VISTA). Of course, client(OS/2) cannot list the directory of samba server(OS/2).

If directory name consist of SBCS chars only, it works well. But files have no problems.

I'm using samba 3.0.25b-20070628 version for both server and client.

KO Myung-Hun

#21 fixed Incorrect error code returned by smbcd Paul Smedley Paul Smedley
Description

From Vitali: I've found a bug in the smbcd.c. When it is unable to connect to a share because it has no rights to access it (wrong login/pass, then the return code from smbcd was 7 (ERROR_ARENA_TRASHED). That is rather misleading :)

Further analysis showed that smbwrp_connect returned a non-0 value as an error indicator. Values numbered 1 to 7 and are not related to OS/2 error codes.

Here is a patch. I think returning ERROR_ACCESS_DENIED on the smbwrp_failure is OK.

Please make a new build for me.

Thanks in advance, Vitali.

Index: smbcd.c =================================================================== --- smbcd.c (revision 44) +++ smbcd.c (working copy) @@ -311,7 +311,7 @@

if (res->rc) {

debuglocal(1,"Client reconnect resprc %d\n", res->rc);

  • return NO_ERROR;

+ return ERROR_ACCESS_DENIED;

} *reconnect = 1;

}

@@ -346,6 +346,10 @@

memcpy(srv, req->param, sizeof(smbwrp_server)); *reconnect = 1;

}

+ else + { + res->rc = ERROR_ACCESS_DENIED; + }

} break; case SMBREQ_DISCONNECT : {

#22 fixed smbclient -L SRV -I 192.168.1.1 -N crashes smbd.exe Paul Smedley guest
Description

Last lines of the log are:

Killed by SIGSEGV pid=0x008e ppid=0x0089 tid=0x0001 slot=0x00e8 pri=0x0400 mc=0x0001 D:\SAMBA\SMBD.EXE LIBC063 0:00053cac cs:eip=005b:1da13cac ss:esp=0053:0045d0a4 ebp=0045d0e8

ds=0053 es=0053 fs=150b gs=0000 efl=00010202

eax=0045d2f0 ebx=20032c3c ecx=00000001 edx=00000001 edi=0045d2f0 esi=00000000 Process has been dumped

Problem was discovered during my work to "port" findsmb to REXX.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Note: See TracQuery for help on using queries.