diff options
author | Günther Deschner <gd@samba.org> | 2010-12-16 12:40:47 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-12-17 11:33:05 +0100 |
commit | f08fdfae27ee0da5750c3f843ad829e1fa8f57b1 (patch) | |
tree | bc8398c6e9f305a919cb3a0aeb0b1833ad8d9bd5 /source3 | |
parent | 7f572dfe523a7ce3728a460dab2b4392c2704ccd (diff) | |
download | samba-f08fdfae27ee0da5750c3f843ad829e1fa8f57b1.tar.gz samba-f08fdfae27ee0da5750c3f843ad829e1fa8f57b1.tar.bz2 samba-f08fdfae27ee0da5750c3f843ad829e1fa8f57b1.zip |
s3-net: fix net sid type build warning.
Guenther
Diffstat (limited to 'source3')
-rw-r--r-- | source3/utils/net_rpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c index 228f7eb852..27d839a017 100644 --- a/source3/utils/net_rpc.c +++ b/source3/utils/net_rpc.c @@ -4240,7 +4240,7 @@ static bool get_user_sids(const char *domain, const char *user, struct security_ return false; } - if (type != SID_NAME_USER) { + if (type != WBC_SID_NAME_USER) { wbcFreeMemory(sid_str); DEBUG(1, ("%s is not a user\n", full_name)); return false; |