mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 23:10:58 +00:00
util-netutils-include-files-and-warnings-cleanup-20010711
cleanup warnings and change inclusion of string/strings
This commit is contained in:
parent
5053c3dc57
commit
bba4ffa025
@ -23,6 +23,14 @@ RCSID("$Header$");
|
|||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
#ifdef HAVE_STRINGS_H
|
||||||
|
#include <strings.h>
|
||||||
|
#else
|
||||||
|
#ifdef HAVE_STRING_H
|
||||||
|
#include <string.h>
|
||||||
|
#endif
|
||||||
|
#endif
|
||||||
|
#include <ctype.h>
|
||||||
#ifdef KERNEL
|
#ifdef KERNEL
|
||||||
#include "../afs/sysincludes.h"
|
#include "../afs/sysincludes.h"
|
||||||
#include "../afs/afsincludes.h"
|
#include "../afs/afsincludes.h"
|
||||||
@ -116,8 +124,8 @@ int parseNetRestrictFile(outAddrs, mask, mtu, maxAddrs, nAddrs, reason, fileName
|
|||||||
{
|
{
|
||||||
FILE* fp;
|
FILE* fp;
|
||||||
char line[MAX_NETFILE_LINE];
|
char line[MAX_NETFILE_LINE];
|
||||||
int lineNo, usedfile;
|
int lineNo, usedfile = 0;
|
||||||
afs_uint32 i, neaddrs, nfaddrs, nOutaddrs;
|
afs_uint32 i, neaddrs, nOutaddrs;
|
||||||
afs_uint32 addr, eAddrs[MAXIPADDRS], eMask[MAXIPADDRS], eMtu[MAXIPADDRS];
|
afs_uint32 addr, eAddrs[MAXIPADDRS], eMask[MAXIPADDRS], eMtu[MAXIPADDRS];
|
||||||
|
|
||||||
assert(outAddrs);
|
assert(outAddrs);
|
||||||
@ -129,7 +137,7 @@ int parseNetRestrictFile(outAddrs, mask, mtu, maxAddrs, nAddrs, reason, fileName
|
|||||||
/* Initialize */
|
/* Initialize */
|
||||||
*nAddrs = 0;
|
*nAddrs = 0;
|
||||||
for (i=0; i<maxAddrs; i++) outAddrs[i] = 0;
|
for (i=0; i<maxAddrs; i++) outAddrs[i] = 0;
|
||||||
sprintf(reason, "");
|
strcpy(reason, "");
|
||||||
|
|
||||||
/* get all network interfaces from the kernel */
|
/* get all network interfaces from the kernel */
|
||||||
neaddrs = rxi_getAllAddrMaskMtu(eAddrs, eMask, eMtu, MAXIPADDRS);
|
neaddrs = rxi_getAllAddrMaskMtu(eAddrs, eMask, eMtu, MAXIPADDRS);
|
||||||
|
Loading…
Reference in New Issue
Block a user