1
0
mirror of https://github.com/samba-team/samba.git synced 2025-08-02 00:22:11 +03:00

Don't initialise static pointers to NULL.

This commit is contained in:
Tim Potter
-
parent 8fc772c9e5
commit 039ea0a0b9

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))