summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-01-17 05:07:36 +0000
committerTim Potter <tpot@samba.org>2002-01-17 05:07:36 +0000
commit21a6c3448527ddff1c7053784116694f064570b5 (patch)
tree45cc8ae4df947c5afc75d952da194322c35b5a47
parent269d24f7167e67985ae443e632a07f21b0dd90e3 (diff)
downloadsamba-21a6c3448527ddff1c7053784116694f064570b5.tar.gz
samba-21a6c3448527ddff1c7053784116694f064570b5.tar.bz2
samba-21a6c3448527ddff1c7053784116694f064570b5.zip
Made a debug look nicer.
(This used to be commit aca0edc819e892944c65b3feb60250994a79e88a)
-rw-r--r--source3/libsmb/namequery.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/libsmb/namequery.c b/source3/libsmb/namequery.c
index 8ac7ae2c6a..926cda9dcb 100644
--- a/source3/libsmb/namequery.c
+++ b/source3/libsmb/namequery.c
@@ -169,7 +169,8 @@ BOOL name_status_find(const char *q_name, int q_type, int type, struct in_addr t
int sock;
BOOL result = False;
- DEBUG(10, ("name_status_find: looking up %s#%x\n", q_name, q_type));
+ DEBUG(10, ("name_status_find: looking up %s#%02x at %s\n", q_name,
+ q_type, inet_ntoa(to_ip)));
sock = open_socket_in(SOCK_DGRAM, 0, 3, interpret_addr(lp_socket_address()), True);
if (sock == -1)