diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-05-04 07:59:34 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-05-04 07:59:34 +0000 |
commit | f3a861e04e33901c89408a9c89ebaa81fc606f97 (patch) | |
tree | e1c30e8a0d51b6ec971bfb8f64843de16b9f9ed1 /source3/include | |
parent | a7820eb9af08771106e6e119c17e76be1174d5b3 (diff) | |
download | samba-f3a861e04e33901c89408a9c89ebaa81fc606f97.tar.gz samba-f3a861e04e33901c89408a9c89ebaa81fc606f97.tar.bz2 samba-f3a861e04e33901c89408a9c89ebaa81fc606f97.zip |
- use full_name instead of real_name
- got rid of guest map code in lpq parser
(This used to be commit 8e53f781d3cf6a7007764916a0d8e8f1abea1f66)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/local.h | 4 | ||||
-rw-r--r-- | source3/include/smb.h | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/source3/include/local.h b/source3/include/local.h index 81212f9988..fbde799e5c 100644 --- a/source3/include/local.h +++ b/source3/include/local.h @@ -85,10 +85,6 @@ /* this is where browse lists are kept in the lock dir */ #define SERVER_LIST "browse.dat" -/* shall guest entries in printer queues get changed to user entries, - so they can be deleted using the windows print manager? */ -#define LPQ_GUEST_TO_USER - /* shall filenames with illegal chars in them get mangled in long filename listings? */ #define MANGLE_LONG_FILENAMES diff --git a/source3/include/smb.h b/source3/include/smb.h index a03d7a0bcb..62cb8e55b4 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -606,7 +606,7 @@ struct dcinfo typedef struct { fstring smb_name; /* user name from the client */ fstring unix_name; /* unix user name of a validated user */ - fstring real_name; /* to store real name from password file - simeon */ + fstring full_name; /* to store full name (such as "Joe Bloggs") from gecos field of password file */ fstring domain; /* domain that the client specified */ } userdom_struct; |