summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-01-20 23:08:33 +0100
committerVolker Lendecke <vl@samba.org>2009-01-20 23:10:16 +0100
commit55dfad40af52235a59e44dbe6434713e7a810bf2 (patch)
tree88eb642bbd8590437e319aeefdeaec6c67477c81 /source3/include
parentd7d251f8c700e254ae913acee702a9fc5c886e8b (diff)
downloadsamba-55dfad40af52235a59e44dbe6434713e7a810bf2.tar.gz
samba-55dfad40af52235a59e44dbe6434713e7a810bf2.tar.bz2
samba-55dfad40af52235a59e44dbe6434713e7a810bf2.zip
"userdom_struct" does not need "full_name" anymore -- unused
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/proto.h2
-rw-r--r--source3/include/smb.h1
2 files changed, 1 insertions, 2 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index 4efcbba6a8..03c021683a 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -801,7 +801,7 @@ bool set_remote_machine_name(const char *remote_name, bool perm);
const char *get_remote_machine_name(void);
void sub_set_smb_name(const char *name);
void set_current_user_info(const char *smb_name, const char *unix_name,
- const char *full_name, const char *domain);
+ const char *domain);
const char *get_current_username(void);
void standard_sub_basic(const char *smb_name, const char *domain_name,
char *str, size_t len);
diff --git a/source3/include/smb.h b/source3/include/smb.h
index 3c727bafbf..799ffe1a46 100644
--- a/source3/include/smb.h
+++ b/source3/include/smb.h
@@ -647,7 +647,6 @@ struct smb_request {
typedef struct {
fstring smb_name; /* user name from the client */
fstring unix_name; /* unix user name of a validated user */
- 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;