diff options
author | ed <ed@FreeBSD.org> | 2011-11-04 13:36:02 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2011-11-04 13:36:02 +0000 |
commit | 5b02333e84f8998d65b39ad509f9c9c5b9df1186 (patch) | |
tree | 3cdfecf4c6772b1de7694dadb6b4b6431ecfdb02 /sbin/natd | |
parent | 89ec155d247591875dd57c531f710aa8a05cdb16 (diff) | |
download | FreeBSD-src-5b02333e84f8998d65b39ad509f9c9c5b9df1186.zip FreeBSD-src-5b02333e84f8998d65b39ad509f9c9c5b9df1186.tar.gz |
Add missing static keywords for global variables to tools in sbin/.
These tools declare global variables without using the static keyword,
even though their use is limited to a single C-file, or without placing
an extern declaration of them in the proper header file.
Diffstat (limited to 'sbin/natd')
-rw-r--r-- | sbin/natd/natd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/natd/natd.c b/sbin/natd/natd.c index 05f7463..3dbfef0 100644 --- a/sbin/natd/natd.c +++ b/sbin/natd/natd.c @@ -71,8 +71,8 @@ struct instance { static LIST_HEAD(, instance) root = LIST_HEAD_INITIALIZER(root); struct libalias *mla; -struct instance *mip; -int ninstance = 1; +static struct instance *mip; +static int ninstance = 1; /* * Default values for input and output |