1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-31 20:22:15 +03:00

- use full_name instead of real_name

- got rid of guest map code in lpq parser
(This used to be commit 8e53f781d3)
This commit is contained in:
Andrew Tridgell
2000-05-04 07:59:34 +00:00
parent a7820eb9af
commit f3a861e04e
8 changed files with 9 additions and 21 deletions

View File

@ -821,16 +821,6 @@ BOOL parse_lpq_entry(int snum,char *line,
break;
}
#ifdef LPQ_GUEST_TO_USER
if (ret) {
extern pstring sesssetup_user;
/* change guest entries to the current logged in user to make
them appear deletable to windows */
if (sesssetup_user[0] && strequal(buf->user,lp_guestaccount(snum)))
pstrcpy(buf->user,sesssetup_user);
}
#endif
/* We don't want the newline in the status message. */
{
char *p = strchr(line,'\n');