diff options
author | Tim Potter <tpot@samba.org> | 2000-07-13 01:21:21 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2000-07-13 01:21:21 +0000 |
commit | 9e2b1074aaec3567ea94d04f1f17307cd6922f35 (patch) | |
tree | 66b9bca2ac3bb90de611e0a6ea242b0d27d775b3 /source3 | |
parent | 6c2242eadee7b9e69d3a868426807e525a4f5b0e (diff) | |
download | samba-9e2b1074aaec3567ea94d04f1f17307cd6922f35.tar.gz samba-9e2b1074aaec3567ea94d04f1f17307cd6922f35.tar.bz2 samba-9e2b1074aaec3567ea94d04f1f17307cd6922f35.zip |
Uninitialised variables.
(This used to be commit a895868912a24589de3a904ca537cf3367a645bf)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/msrpc-client.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/lib/msrpc-client.c b/source3/lib/msrpc-client.c index 9b9350cb7e..8d7efb6fb9 100644 --- a/source3/lib/msrpc-client.c +++ b/source3/lib/msrpc-client.c @@ -261,9 +261,11 @@ struct msrpc_local *ncalrpc_l_initialise(struct msrpc_local *msrpc, else { NET_USER_INFO_3 usr; +#if 0 uid_t uid = getuid(); gid_t gid = getgid(); char *name = uidtoname(uid); +#endif ZERO_STRUCT(usr); |