]> git.decadent.org.uk Git - nfs-utils.git/commitdiff
Added back the some logging variables which are no nfs-utils-1-1-5-rc1 nfs-utils-1-1-6-rc1
authorSteve Dickson <steved@redhat.com>
Sun, 8 Mar 2009 14:10:25 +0000 (10:10 -0400)
committerSteve Dickson <steved@redhat.com>
Sun, 8 Mar 2009 14:10:25 +0000 (10:10 -0400)
longer used but, unfortunately, they are extern-ed by
public headers files which are not under the control
of this package.

Spotted-by: Juergen Daubert <jue@jue.li>
Signed-off-by: Steve Dickson <steved@redhat.com>
support/misc/tcpwrapper.c

index a361496e25720b5f8cf56f7e06dabaa3689bc4f5..1da60204c541a3ee178d9a8ec869bc277387de93 100644 (file)
@@ -60,8 +60,16 @@ static void logit(int severity, struct sockaddr_in *addr,
                  u_long procnum, u_long prognum, char *text);
 static int check_files(void);
 
                  u_long procnum, u_long prognum, char *text);
 static int check_files(void);
 
+/*
+ * These need to exist since they are externed 
+ * public header files.
+ */
+int     verboselog = 0;
+int     allow_severity = LOG_INFO;
+int     deny_severity = LOG_WARNING;
+
 #define log_bad_host(addr, proc, prog) \
 #define log_bad_host(addr, proc, prog) \
-  logit(LOG_WARNING, addr, proc, prog, "request from unauthorized host")
+  logit(deny_severity, addr, proc, prog, "request from unauthorized host")
 
 #define ALLOW 1
 #define DENY 0
 
 #define ALLOW 1
 #define DENY 0