diff options
author | Jeremy Allison <jra@samba.org> | 1998-11-14 01:04:13 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-11-14 01:04:13 +0000 |
commit | 9ee8f39aed8772a05c203161b4ae6b7d90d67481 (patch) | |
tree | 07778a1272b86bb89046485d4eda6054d1d24edf /source/nmbd/nmbd_winsproxy.c | |
parent | 9e1ff71faf558addfabe038e3bf45ee694ea4a0b (diff) | |
download | samba-9ee8f39aed8772a05c203161b4ae6b7d90d67481.tar.gz samba-9ee8f39aed8772a05c203161b4ae6b7d90d67481.tar.xz samba-9ee8f39aed8772a05c203161b4ae6b7d90d67481.zip |
Removed acconfig.h configure configure.in include/config.h.in: Made smbwrapper not made
by default.
nmbd*: Changed all calls to namestr() to nmbd_namestr() to fix broken FreeBSD include
file problem...sigh.
Jeremy.
Diffstat (limited to 'source/nmbd/nmbd_winsproxy.c')
-rw-r--r-- | source/nmbd/nmbd_winsproxy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/nmbd/nmbd_winsproxy.c b/source/nmbd/nmbd_winsproxy.c index 2084d3915ab..43beb9acd85 100644 --- a/source/nmbd/nmbd_winsproxy.c +++ b/source/nmbd/nmbd_winsproxy.c @@ -55,7 +55,7 @@ static void wins_proxy_name_query_request_success( struct subnet_record *subrec, if(num_ips == 0) { DEBUG(0,("wins_proxy_name_query_request_success: Invalid number of IP records (0) \ -returned for name %s.\n", namestr(nmbname) )); +returned for name %s.\n", nmb_namestr(nmbname) )); return; } @@ -104,7 +104,7 @@ returned for name %s.\n", namestr(nmbname) )); DEBUG( 5, ( "wins_proxy_name_query_request_success: name %s is a WINS \ proxy name and is also on the same subnet (%s) as the requestor. \ Not replying.\n", - namestr(&namerec->name), + nmb_namestr(&namerec->name), orig_broadcast_subnet->subnet_name ) ); return; } @@ -130,7 +130,7 @@ static void wins_proxy_name_query_request_fail(struct subnet_record *subrec, struct nmb_name *question_name, int fail_code) { DEBUG(4,("wins_proxy_name_query_request_fail: WINS server returned error code %d for lookup \ -of name %s.\n", fail_code, namestr(question_name) )); +of name %s.\n", fail_code, nmb_namestr(question_name) )); } /**************************************************************************** |