diff options
author | Herb Lewis <herb@samba.org> | 2005-04-06 16:28:04 +0000 |
---|---|---|
committer | Herb Lewis <herb@samba.org> | 2005-04-06 16:28:04 +0000 |
commit | 261e6660e43bfdcc5ff6e2ec9297053af1eebe2c (patch) | |
tree | 76eb8431f1185778c29fb3adbc8d1b0e724af38c /source/param/params.c | |
parent | 830cd57aca089f6b446ca1b86cf2b47742926692 (diff) | |
download | samba-261e6660e43bfdcc5ff6e2ec9297053af1eebe2c.tar.gz samba-261e6660e43bfdcc5ff6e2ec9297053af1eebe2c.tar.xz samba-261e6660e43bfdcc5ff6e2ec9297053af1eebe2c.zip |
r6225: get rid of warnings from my compiler about nested externs
Diffstat (limited to 'source/param/params.c')
-rw-r--r-- | source/param/params.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source/param/params.c b/source/param/params.c index 9d21d25a240..3b736113bef 100644 --- a/source/param/params.c +++ b/source/param/params.c @@ -81,6 +81,8 @@ #include "includes.h" +extern BOOL in_client; + /* -------------------------------------------------------------------------- ** * Constants... */ @@ -523,7 +525,6 @@ static BOOL Parse( myFILE *InFile, static myFILE *OpenConfFile( const char *FileName ) { const char *func = "params.c:OpenConfFile() -"; - extern BOOL in_client; int lvl = in_client?1:0; myFILE *ret; |