From 9a3537e0681d87ec36fc1ca662eb67f91a8baff2 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 12 Apr 1998 02:54:31 +0000 Subject: minor reformatting of debug messages (so people don't think there is a . on the end of their host names) (This used to be commit dd3fe9fb471a803747957a898693a5890d71e176) --- source3/lib/util.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3') diff --git a/source3/lib/util.c b/source3/lib/util.c index 484dfe21bd..96cb86a1d8 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -3405,7 +3405,7 @@ BOOL get_myname(char *my_name,struct in_addr *ip) /* get host info */ if ((hp = Get_Hostbyname(hostname)) == 0) { - DEBUG(0,( "Get_Hostbyname: Unknown host %s.\n",hostname)); + DEBUG(0,( "Get_Hostbyname: Unknown host %s\n",hostname)); return False; } @@ -3454,7 +3454,7 @@ int open_socket_in(int type, int port, int dlevel,uint32 socket_addr) /* get host info */ if ((hp = Get_Hostbyname(host_name)) == 0) { - DEBUG(0,( "Get_Hostbyname: Unknown host. %s\n",host_name)); + DEBUG(0,( "Get_Hostbyname: Unknown host %s\n",host_name)); return -1; } @@ -3634,7 +3634,7 @@ uint32 interpret_addr(char *str) return 0; } if(hp->h_addr == NULL) { - DEBUG(3,("Get_Hostbyname: host address is invalid for host %s.\n",str)); + DEBUG(3,("Get_Hostbyname: host address is invalid for host %s\n",str)); return 0; } putip((char *)&res,(char *)hp->h_addr); -- cgit