search for: got_pass

Displaying 4 results from an estimated 4 matches for "got_pass".

1998 Nov 24
0
source/client/client.c : redundant calls to getenv()
...ot;)) { pstrcpy(username, user); /* modification to support userid%passwd syntax in the USER var 25.Aug.97, jdblair@uab.edu */ if ((p=strchr(username,'%'))) { *p = 0; pstrcpy(password,p+1); got_pass = True; memset(strchr(user,'%')+1,'X',strlen(password\)); } /* modification to support PASSWD environmental var 25.Aug.97, jdblair@uab.edu */ if ((user=getenv("PASSWD"))) { pstrcpy(password,user); got_pass = True; } if ((user=get...
1998 Dec 02
1
smbmounted shares don't stay mounted
I'm running Linux 2.1.130 on an AXP, with Samba 2.0 beta 2. I have smbfs enabled in the kernel with Win 95 bug fixes enabled but I'm not running smbd. The server containing the share is an HP running Samba 1.9.16p11. I mount the share with smbmount //hpname/share -c 'mount /home/me/mydir' All is well for a while (~1 hour), but then I get kernel: smb_get_length: recv error = 5
1998 Jul 22
0
BUG-with-fix: smbclient ignores WORKGROUP= in smb.conf
...ff -c -r1.24.2.8 clientutil.c *** clientutil.c 1998/05/12 22:52:02 1.24.2.8 --- clientutil.c 1998/07/22 21:20:58 *************** *** 35,41 **** pstring password = ""; pstring smb_login_passwd = ""; pstring username=""; ! pstring workgroup=WORKGROUP; BOOL got_pass = False; BOOL no_pass = False; BOOL connect_as_printer = False; --- 35,41 ---- pstring password = ""; pstring smb_login_passwd = ""; pstring username=""; ! pstring workgroup=""; BOOL got_pass = False; BOOL no_pass = False; BOOL connect_as_prin...
2001 Nov 06
0
[PATCH] nomtab support
...-782,6 +794,8 @@ if(!strcmp(opts, "nocaps")) { fprintf(stderr, "Unhandled option: %s\n", opteq+1); exit(1); + } else if(!strcmp(opts, "nomtab")) { + no_mtab = True; } else if(!strcmp(opts, "guest")) { *password = '\0'; got_pass = True;