summaryrefslogtreecommitdiffstats
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
commitaca0edc819e892944c65b3feb60250994a79e88a (patch)
tree16a17604ece23b9e60de3546ca97c59931534f4e
parent967c68858001cd620d2524d56180497c4b479c6b (diff)
downloadsamba-aca0edc819e892944c65b3feb60250994a79e88a.tar.gz
samba-aca0edc819e892944c65b3feb60250994a79e88a.tar.xz
samba-aca0edc819e892944c65b3feb60250994a79e88a.zip
Made a debug look nicer.
-rw-r--r--source/libsmb/namequery.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/libsmb/namequery.c b/source/libsmb/namequery.c
index 8ac7ae2c6ae..926cda9dcb7 100644
--- a/source/libsmb/namequery.c
+++ b/source/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)