summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-04-12 02:54:31 +0000
committerAndrew Tridgell <tridge@samba.org>1998-04-12 02:54:31 +0000
commit9a3537e0681d87ec36fc1ca662eb67f91a8baff2 (patch)
tree95325cc41cad4f880e266a1a3d97ab8bdb84582c
parentfc9065b3606cbe1b11fe009b117195abbcf07fad (diff)
downloadsamba-9a3537e0681d87ec36fc1ca662eb67f91a8baff2.tar.gz
samba-9a3537e0681d87ec36fc1ca662eb67f91a8baff2.tar.bz2
samba-9a3537e0681d87ec36fc1ca662eb67f91a8baff2.zip
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)
-rw-r--r--source3/lib/util.c6
1 files changed, 3 insertions, 3 deletions
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);