1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-07 00:58:40 +03:00

Don't initialise static pointers to NULL.

(This used to be commit 039ea0a0b94be2d70164616f448c0e29fed071cf)
This commit is contained in:
Tim Potter 2001-11-23 01:00:54 +00:00
parent 79b34d1b11
commit d2b9acd003

View File

@ -30,7 +30,7 @@ struct in_addr ipzero;
struct in_addr allones_ip;
struct in_addr loopback_ip;
static struct interface *local_interfaces = NULL;
static struct interface *local_interfaces;
#define ALLONES ((uint32)0xFFFFFFFF)
#define MKBCADDR(_IP, _NM) ((_IP & _NM) | (_NM ^ ALLONES))