From ef4a7b3c408d21f9979a52ac3ad84cc566a58e91 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 18 Mar 2004 07:32:15 +0000 Subject: Two little annoyances: net rpc did not inform you if no smbd is running. I never liked the error message (!) Success! when we established a trust. Volker (This used to be commit 4191a434d48065a75f38752c4aa27219f36d602b) --- source3/utils/net.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source3/utils/net.c') diff --git a/source3/utils/net.c b/source3/utils/net.c index 8004ced43e..f6d6de0a74 100644 --- a/source3/utils/net.c +++ b/source3/utils/net.c @@ -150,8 +150,7 @@ NTSTATUS connect_to_ipc(struct cli_state **c, struct in_addr *server_ip, if (NT_STATUS_IS_OK(nt_status)) { return nt_status; } else { - DEBUG(1,("Cannot connect to server. Error was %s\n", - nt_errstr(nt_status))); + d_printf("Could not connect to server %s\n", server_name); /* Display a nicer message depending on the result */ -- cgit