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 | 039ea0a0b94be2d70164616f448c0e29fed071cf (patch) | |
tree | 95f2e86e42c68f430cd69c121fd03d332fd1d6fe /source/lib/interface.c | |
parent | 8fc772c9e5770cd3a8857670214dcff033ebae32 (diff) | |
download | samba-039ea0a0b94be2d70164616f448c0e29fed071cf.tar.gz samba-039ea0a0b94be2d70164616f448c0e29fed071cf.tar.xz samba-039ea0a0b94be2d70164616f448c0e29fed071cf.zip |
Don't initialise static pointers to NULL.
Diffstat (limited to 'source/lib/interface.c')
-rw-r--r-- | source/lib/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/interface.c b/source/lib/interface.c index 70ffcb0e1d5..d2e0b44fd4d 100644 --- a/source/lib/interface.c +++ b/source/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)) |