diff options
author | Tim Potter <tpot@samba.org> | 2002-03-05 00:46:41 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-03-05 00:46:41 +0000 |
commit | 472acd89b2bf5ec2a471957aaff42e560053f60e (patch) | |
tree | a0dc11a55b6792249f781da24cafc0a9d4dece40 | |
parent | 7bb0dda8ee1d61a0e8448070f1a71fcd13be5d40 (diff) | |
download | samba-472acd89b2bf5ec2a471957aaff42e560053f60e.tar.gz samba-472acd89b2bf5ec2a471957aaff42e560053f60e.tar.xz samba-472acd89b2bf5ec2a471957aaff42e560053f60e.zip |
Removed unused static function.
-rw-r--r-- | source/nmbd/nmbd_winsserver.c | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/source/nmbd/nmbd_winsserver.c b/source/nmbd/nmbd_winsserver.c index d274f6d3d3f..75f93eafde7 100644 --- a/source/nmbd/nmbd_winsserver.c +++ b/source/nmbd/nmbd_winsserver.c @@ -134,24 +134,6 @@ static void wins_hook(char *operation, struct name_record *namerec, int ttl) /**************************************************************************** -hash our interfaces and netbios names settings -*****************************************************************************/ -static unsigned wins_hash(void) -{ - int i; - unsigned ret = iface_hash(); - extern char **my_netbios_names; - - for (i=0;my_netbios_names[i];i++) - ret ^= str_checksum(my_netbios_names[i]); - - ret ^= str_checksum(lp_workgroup()); - - return ret; -} - - -/**************************************************************************** Determine if this packet should be allocated to the WINS server. *****************************************************************************/ |