summaryrefslogtreecommitdiff
path: root/source3/wsmbstatus.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-02-24 17:59:34 +0000
committerJeremy Allison <jra@samba.org>1998-02-24 17:59:34 +0000
commit834ef5624421dfdb4665012ea43aa37d092efe40 (patch)
tree0ef94ac1c248e8c27acb89829c1e4cbb583c47e1 /source3/wsmbstatus.c
parentc16d4aec00230983973be3b827d1209f5db65d9c (diff)
downloadsamba-834ef5624421dfdb4665012ea43aa37d092efe40.tar.gz
samba-834ef5624421dfdb4665012ea43aa37d092efe40.tar.bz2
samba-834ef5624421dfdb4665012ea43aa37d092efe40.zip
nmbd_incomingdgrams.c: Fix for typo.
nmbd_sendannounce.c: Remote announcement was announcing to the wrong name ! nmblookup.c: Fix for substitutions not seeing hostname. testparm.c: Fix for substitutions not seeing hostname. wsmbstatus.c: Fix for substitutions not seeing hostname. util.c: Change read_udp_socket to use sockaddr_in rather than dubiously messing around with an opaque data type (sockaddr). Jeremy. (This used to be commit 776ccf5c0641b5aa300236c2612b5f2761d1179f)
Diffstat (limited to 'source3/wsmbstatus.c')
-rw-r--r--source3/wsmbstatus.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/wsmbstatus.c b/source3/wsmbstatus.c
index fd57662062..60c35357b2 100644
--- a/source3/wsmbstatus.c
+++ b/source3/wsmbstatus.c
@@ -43,6 +43,12 @@ static void show_connections(void)
FILE *f;
struct connect_record crec;
+ if(!get_myname(myhostname,NULL))
+ {
+ printf("Failed to get my hostname.\n");
+ return;
+ }
+
if (!lp_load(servicesf,False)) {
printf("Can't load %s - run testparm to debug it\n", servicesf);
return;