diff options
author | Andreas Schneider <asn@samba.org> | 2013-02-18 15:44:20 +0100 |
---|---|---|
committer | Alexander Bokovoy <ab@samba.org> | 2013-02-22 16:36:12 +0100 |
commit | 45671747f0b4a569581773ce497ab4dd31e7710d (patch) | |
tree | de74e6f52d6c0f514fd0d39485159c2f6ebfd482 /source3/winbindd | |
parent | 240a55249d00c1e73400b480d4bc924edae94022 (diff) | |
download | samba-45671747f0b4a569581773ce497ab4dd31e7710d.tar.gz samba-45671747f0b4a569581773ce497ab4dd31e7710d.tar.bz2 samba-45671747f0b4a569581773ce497ab4dd31e7710d.zip |
winbind: Make domain_name const in wcache_ndr_key().
Reviewed-by: Alexander Bokovoy <ab@samba.org>
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd_cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/winbindd/winbindd_cache.c b/source3/winbindd/winbindd_cache.c index 252cf4a03c..4b1e16c279 100644 --- a/source3/winbindd/winbindd_cache.c +++ b/source3/winbindd/winbindd_cache.c @@ -4834,7 +4834,7 @@ struct winbindd_methods cache_methods = { trusted_domains }; -static bool wcache_ndr_key(TALLOC_CTX *mem_ctx, char *domain_name, +static bool wcache_ndr_key(TALLOC_CTX *mem_ctx, const char *domain_name, uint32_t opnum, const DATA_BLOB *req, TDB_DATA *pkey) { |