1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

Removed unused static function.

This commit is contained in:
Tim Potter 0001-01-01 00:00:00 +00:00
parent 7bb0dda8ee
commit 472acd89b2

View File

@ -133,24 +133,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.
*****************************************************************************/