diff options
author | Samba Release Account <samba-bugs@samba.org> | 1996-08-05 17:45:47 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1996-08-05 17:45:47 +0000 |
commit | cfc0d5f5b3dab371549b52765be67382e7e74301 (patch) | |
tree | 0afd49a05392612c630beb822b8405f4d079221e | |
parent | b1bddd39c732ba011c9a8a111a0f5e08e42e7a40 (diff) | |
download | samba-cfc0d5f5b3dab371549b52765be67382e7e74301.tar.gz samba-cfc0d5f5b3dab371549b52765be67382e7e74301.tar.bz2 samba-cfc0d5f5b3dab371549b52765be67382e7e74301.zip |
jht spotted error in Domain announcements: the comment was being displayed
as the NetBIOS name of the master browser for samba's workgroup, instead
of samba's NetBIOS name.
(This used to be commit b5fb0293b02e8fdc6ae07be52666ebe55df1bd4e)
-rw-r--r-- | source3/nameannounce.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/nameannounce.c b/source3/nameannounce.c index c76dffda00..ff6ee18cd1 100644 --- a/source3/nameannounce.c +++ b/source3/nameannounce.c @@ -372,7 +372,7 @@ void announce_server(struct subnet_record *d, struct work_record *work, MSBROWSE, 0x01, d->bcast_ip, ttl*1000, work->work_group, server_type ? domain_type : 0, - comment); + name); } } else |