summaryrefslogtreecommitdiffstats
path: root/source/nameannounce.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1996-07-03 02:58:18 +0000
committerAndrew Tridgell <tridge@samba.org>1996-07-03 02:58:18 +0000
commitba478e94047cc4f92ae35a508c9e62855619e665 (patch)
tree81d5ca7bf9e041f2f769cdd2ecf44ea14b8d620c /source/nameannounce.c
parent98568862ca5f9f48b389a42633732de831331189 (diff)
downloadsamba-ba478e94047cc4f92ae35a508c9e62855619e665.tar.gz
samba-ba478e94047cc4f92ae35a508c9e62855619e665.tar.xz
samba-ba478e94047cc4f92ae35a508c9e62855619e665.zip
fixed conflict with global variable updatecount
Diffstat (limited to 'source/nameannounce.c')
-rw-r--r--source/nameannounce.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source/nameannounce.c b/source/nameannounce.c
index 0fad2fe7ecc..14c16cadc1c 100644
--- a/source/nameannounce.c
+++ b/source/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);
}
}