diff options
author | Luke Leighton <lkcl@samba.org> | 1999-02-09 19:51:44 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-02-09 19:51:44 +0000 |
commit | 748f296a76a76d38525ad35df6658811cae60222 (patch) | |
tree | 977f07b580b89f7f8494847e2fad36946679d51e /source3/lib | |
parent | 3b12477f34a4311235c7c0b2e9a9cdc9f5a4f0e9 (diff) | |
download | samba-748f296a76a76d38525ad35df6658811cae60222.tar.gz samba-748f296a76a76d38525ad35df6658811cae60222.tar.bz2 samba-748f296a76a76d38525ad35df6658811cae60222.zip |
removal of the use of unistrn2 function: replace it with unistr2_to_str
which is more appropriate.
(This used to be commit ac72fe1ab3d10f64a5945ccbd4ed3817e30f9f7b)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/domain_namemap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/domain_namemap.c b/source3/lib/domain_namemap.c index f095c8d764..892263f084 100644 --- a/source3/lib/domain_namemap.c +++ b/source3/lib/domain_namemap.c @@ -1070,7 +1070,7 @@ BOOL lookupsmbpwuid(uid_t uid, DOM_NAME_MAP *gmep) /************************************************************************* looks up by NT name, returns User Information. *************************************************************************/ -BOOL lookupsmbpwntnam(char *fullntname, DOM_NAME_MAP *gmep) +BOOL lookupsmbpwntnam(const char *fullntname, DOM_NAME_MAP *gmep) { DEBUG(10,("lookupsmbpwntnam: nt user name %s\n", fullntname)); |