From 9c77b8ab373914ebb8c45ad912ae8af48b22c7e3 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 3 Jul 1996 02:58:18 +0000 Subject: fixed conflict with global variable updatecount (This used to be commit ba478e94047cc4f92ae35a508c9e62855619e665) --- source3/nameannounce.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source3/nameannounce.c') diff --git a/source3/nameannounce.c b/source3/nameannounce.c index 0fad2fe7ec..14c16cadc1 100644 --- a/source3/nameannounce.c +++ b/source3/nameannounce.c @@ -200,10 +200,10 @@ void announce_backup(void) /**************************************************************************** send a host announcement packet **************************************************************************/ -void do_announce_host(int command, +static void do_announce_host(int command, char *from_name, int from_type, struct in_addr from_ip, char *to_name , int to_type , struct in_addr to_ip, - int updatecount, time_t announce_interval, + time_t announce_interval, char *server_name, int server_type, char *server_comment) { pstring outbuf; @@ -256,7 +256,7 @@ void announce_server(struct subnet_record *d, struct work_record *work, do_announce_host(ANN_LocalMasterAnnouncement, name , 0x00, d->myip, work->work_group, 0x1e, d->bcast_ip, - updatecount, ttl*1000, + ttl*1000, name, server_type, comment); DEBUG(3,("sending domain announce to %s for %s\n", @@ -268,7 +268,7 @@ void announce_server(struct subnet_record *d, struct work_record *work, do_announce_host(ANN_DomainAnnouncement, work->work_group, 0x00, d->myip, MSBROWSE , 0x01, d->bcast_ip, - updatecount, ttl*1000, + ttl*1000, name, server_type ? SV_TYPE_DOMAIN_ENUM : 0, comment); } } @@ -280,7 +280,7 @@ void announce_server(struct subnet_record *d, struct work_record *work, do_announce_host(ANN_HostAnnouncement, name , 0x00, d->myip, work->work_group, 0x1d, d->bcast_ip, - updatecount, ttl*1000, + ttl*1000, name, server_type, comment); } } -- cgit