search for: term_cod

Displaying 2 results from an estimated 2 matches for "term_cod".

Did you mean: term_code
1998 Jul 22
0
BUG-with-fix: smbclient ignores WORKGROUP= in smb.conf
...63.2.11 client.c *** client.c 1998/05/13 02:32:40 1.63.2.11 --- client.c 1998/07/22 21:20:56 *************** *** 3549,3554 **** --- 3549,3555 ---- pstring new_name_resolve_order; char *p; int save_debuglevel = -1; + pstring tempworkgroup = ""; #ifdef KANJI pstrcpy(term_code, KANJI); *************** *** 3703,3709 **** break; case 'W': ! pstrcpy(workgroup,optarg); break; case 'E': dbf = stderr; --- 3704,3710 ---- break; case 'W': ! pstrcpy(tempworkgroup,optarg); break; case 'E&...
2003 Dec 01
0
No subject
...,0)) + goto again; } cli_chkpath(cli, "\\"); @@ -1954,6 +1954,8 @@ } } + pwd_set_cleartext(&c->pwd, password); + if (!cli_session_setup(c, username, password, strlen(password), password, strlen(password), @@ -2207,6 +2209,8 @@ pstring term_code; pstring new_name_resolve_order; char *p; + + signal(SIGPIPE, SIG_IGN); #ifdef KANJI pstrcpy(term_code, KANJI); diff -ruN samba-2.2.0/source/libsmb/clientgen.c samba-2.2.0-drze/source/libsmb/clientgen.c --- samba-2.2.0/source/libsmb/clientgen.c Thu Dec 14 15:40:01 2000 +++ samba-2.2.0-drz...