diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-08-30 14:00:50 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-09-11 18:46:10 +1000 |
commit | 6d78e11e17b80bc932e5f4fb1ff6b27909f405d0 (patch) | |
tree | 8af514c1f956aa589bbe6ee7de9fe9e3d6080c6b /libcli | |
parent | 8ff6bc2350894924ad362e0f058a24de3e459270 (diff) | |
download | samba-6d78e11e17b80bc932e5f4fb1ff6b27909f405d0.tar.gz samba-6d78e11e17b80bc932e5f4fb1ff6b27909f405d0.tar.xz samba-6d78e11e17b80bc932e5f4fb1ff6b27909f405d0.zip |
libcli/security make sec_privilege_id() return SEC_PRIV_INVALID on failure.
Andrew Bartlett
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'libcli')
-rw-r--r-- | libcli/security/privileges.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcli/security/privileges.c b/libcli/security/privileges.c index 2b241c91aad..b15a4ecc1ab 100644 --- a/libcli/security/privileges.c +++ b/libcli/security/privileges.c @@ -368,7 +368,7 @@ enum sec_privilege sec_privilege_id(const char *name) return privs[i].luid; } } - return -1; + return SEC_PRIV_INVALID; } /* |