Displaying 1 result from an estimated 1 matches for "lp_guestaccount".
1998 Aug 20
0
macro subsitution inconsistancies
...e connection that was initially authorized. The debug log shows:
sesssetupX:name=[]
Looking at the sources, I tracked this down to reply.c:reply_sesssetup_and_X, which contains this code and comment:
/* If no username is sent use the guest account */
if (!*user)
{
pstrcpy(user,lp_guestaccount(-1));
/* If no user and no password then set guest flag. */
if( *smb_apasswd == 0)
guest = True;
}
This makes sense, considering that it then tries to read the file /etc/smb-confs/smb.conf.guest (my guest account = guest).
I don't know if this should be chalked up to a...