diff options
author | Andrew Tridgell <tridge@samba.org> | 1998-04-12 02:54:31 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1998-04-12 02:54:31 +0000 |
commit | dd3fe9fb471a803747957a898693a5890d71e176 (patch) | |
tree | 8a28f5ed900b91e1de0a2bb241ba0316e6de9e3d | |
parent | 02786747ee6774f617d95b08a5c5912bf86e7586 (diff) | |
download | samba-dd3fe9fb471a803747957a898693a5890d71e176.tar.gz samba-dd3fe9fb471a803747957a898693a5890d71e176.tar.xz samba-dd3fe9fb471a803747957a898693a5890d71e176.zip |
minor reformatting of debug messages (so people don't think there is a
. on the end of their host names)
-rw-r--r-- | source/lib/util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/lib/util.c b/source/lib/util.c index 484dfe21bd1..96cb86a1d88 100644 --- a/source/lib/util.c +++ b/source/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); |