diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-06-05 12:04:15 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-06-06 10:18:39 +0200 |
commit | f52e5738a26e12787ec8a4c8d73ff14122d202c6 (patch) | |
tree | 61a860936d78b0d89b30af1ac0c32005f7ea9518 /source3/smbd/uid.c | |
parent | 9e2e3708aa4e10aef561b1a9cc1f89688d65445f (diff) | |
download | samba-f52e5738a26e12787ec8a4c8d73ff14122d202c6.tar.gz |
s3:smbd: use 'struct user_struct' instead of typedef'ed 'user_struct'
metze
Diffstat (limited to 'source3/smbd/uid.c')
-rw-r--r-- | source3/smbd/uid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/uid.c b/source3/smbd/uid.c index abafd369124..f4ad78eeeaa 100644 --- a/source3/smbd/uid.c +++ b/source3/smbd/uid.c @@ -278,7 +278,7 @@ static bool change_to_user_internal(connection_struct *conn, bool change_to_user(connection_struct *conn, uint16_t vuid) { const struct auth_session_info *session_info = NULL; - user_struct *vuser; + struct user_struct *vuser; int snum = SNUM(conn); if (!conn) { |