diff options
author | Tim Potter <tpot@samba.org> | 2001-11-23 01:00:54 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-11-23 01:00:54 +0000 |
commit | d2b9acd003f0fde8090a80c610280ae79ea7a706 (patch) | |
tree | cfc360576efeacbe2e63814b6087d0c029d30ec2 /source3/lib | |
parent | 79b34d1b11e685d068b9c0ac9a0ec06eaa263d82 (diff) | |
download | samba-d2b9acd003f0fde8090a80c610280ae79ea7a706.tar.gz samba-d2b9acd003f0fde8090a80c610280ae79ea7a706.tar.bz2 samba-d2b9acd003f0fde8090a80c610280ae79ea7a706.zip |
Don't initialise static pointers to NULL.
(This used to be commit 039ea0a0b94be2d70164616f448c0e29fed071cf)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/interface.c b/source3/lib/interface.c index 70ffcb0e1d..d2e0b44fd4 100644 --- a/source3/lib/interface.c +++ b/source3/lib/interface.c @@ -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)) |