diff options
author | Luke Leighton <lkcl@samba.org> | 1999-10-21 19:02:57 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-10-21 19:02:57 +0000 |
commit | 45b794bdde0cb906216425c8fc2af8610aa8ad3c (patch) | |
tree | 6dd018021c24dee66dc57b23d3c876acc658293c /source3/lib | |
parent | 52fed795e156b9db8a0f29d9087042ccdec093f5 (diff) | |
download | samba-45b794bdde0cb906216425c8fc2af8610aa8ad3c.tar.gz samba-45b794bdde0cb906216425c8fc2af8610aa8ad3c.tar.bz2 samba-45b794bdde0cb906216425c8fc2af8610aa8ad3c.zip |
the dynamic memory alloc blood-fest goes on...
(This used to be commit 134b20e2a7b5ddfa4cc9bf100de5025c7b98f594)
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 ed4325a4d7..05b67632a2 100644 --- a/source3/lib/domain_namemap.c +++ b/source3/lib/domain_namemap.c @@ -889,7 +889,7 @@ static BOOL lookup_remote_ntname(const char *ntname, DOM_SID *sid, uint8 *type) uint32 num_sids; DOM_SID *sids; uint8 *types; - const char *names[1]; + char *names[1]; DEBUG(5,("lookup_remote_ntname: %s\n", ntname)); |