diff options
author | Tim Potter <tpot@samba.org> | 2002-04-14 04:58:49 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-04-14 04:58:49 +0000 |
commit | c4e49dee7a4fdfbf1939b9d870fdfa6339113a74 (patch) | |
tree | c8b1da35c9bc6861a5264f3accf5bc3111586545 | |
parent | f8b1f9608f5d5cb15cf063e04a036ccf3aa0a4d9 (diff) | |
download | samba-c4e49dee7a4fdfbf1939b9d870fdfa6339113a74.tar.gz samba-c4e49dee7a4fdfbf1939b9d870fdfa6339113a74.tar.bz2 samba-c4e49dee7a4fdfbf1939b9d870fdfa6339113a74.zip |
Fixed debugs.
(This used to be commit 6d9336f3b9b205e5916424ee844658b445439fdb)
-rw-r--r-- | source3/utils/net_rpc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c index 19e2c63ecc..2aca3f0485 100644 --- a/source3/utils/net_rpc.c +++ b/source3/utils/net_rpc.c @@ -59,13 +59,13 @@ static DOM_SID *net_get_remote_domain_sid(struct cli_state *cli) TALLOC_CTX *mem_ctx; if (!(domain_sid = malloc(sizeof(DOM_SID)))){ - DEBUG(0,("fetch_domain_sid: malloc returned NULL!\n")); + DEBUG(0,("net_get_remote_domain_sid: malloc returned NULL!\n")); goto error; } if (!(mem_ctx=talloc_init())) { - DEBUG(0,("fetch_domain_sid: talloc_init returned NULL!\n")); + DEBUG(0,("net_get_remote_domain_sid: talloc_init returned NULL!\n")); goto error; } |