diff options
author | Michael Adam <obnox@samba.org> | 2012-05-02 09:48:28 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-05-02 12:45:30 +0200 |
commit | f9c9c49c51140f708ac58a2b60cbea817df7e056 (patch) | |
tree | 4df3f21870ac8a6bb0dc532313b9ec3013967f9d /source3/auth | |
parent | ac97f151ed18351bf648b00e358cfb127f261826 (diff) | |
download | samba-f9c9c49c51140f708ac58a2b60cbea817df7e056.tar.gz samba-f9c9c49c51140f708ac58a2b60cbea817df7e056.tar.bz2 samba-f9c9c49c51140f708ac58a2b60cbea817df7e056.zip |
s3:passdb: rename sids_to_unix_ids() --> sids_to_unixids() for consistency
Diffstat (limited to 'source3/auth')
-rw-r--r-- | source3/auth/auth_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth_util.c b/source3/auth/auth_util.c index 07ed9c1077..de395a5674 100644 --- a/source3/auth/auth_util.c +++ b/source3/auth/auth_util.c @@ -600,7 +600,7 @@ NTSTATUS create_local_token(TALLOC_CTX *mem_ctx, return NT_STATUS_NO_MEMORY; } - if (!sids_to_unix_ids(t->sids, t->num_sids, ids)) { + if (!sids_to_unixids(t->sids, t->num_sids, ids)) { TALLOC_FREE(ids); return NT_STATUS_NO_MEMORY; } |