aboutsummaryrefslogtreecommitdiff
path: root/dns/maradns/files
diff options
context:
space:
mode:
authorBernhard Froehlich <decke@FreeBSD.org>2011-04-12 09:35:14 +0000
committerBernhard Froehlich <decke@FreeBSD.org>2011-04-12 09:35:14 +0000
commit48c298fafc18c8e78dbccafb55d64a2f841ba8eb (patch)
treebd42a0ac939ff38886f436fe496383771fd11bc6 /dns/maradns/files
parent4c79e4adc134ea45b5e00ada5c33f65552ab16ad (diff)
downloadports-48c298fafc18c8e78dbccafb55d64a2f841ba8eb.tar.gz
ports-48c298fafc18c8e78dbccafb55d64a2f841ba8eb.zip
Notes
Diffstat (limited to 'dns/maradns/files')
-rw-r--r--dns/maradns/files/patch-tools_duende.c34
1 files changed, 30 insertions, 4 deletions
diff --git a/dns/maradns/files/patch-tools_duende.c b/dns/maradns/files/patch-tools_duende.c
index 8f6d02bd6193..eed161e2ce14 100644
--- a/dns/maradns/files/patch-tools_duende.c
+++ b/dns/maradns/files/patch-tools_duende.c
@@ -1,5 +1,5 @@
---- tools/duende.c.orig 2008-08-03 20:10:49.000000000 +0200
-+++ tools/duende.c 2009-09-23 01:57:16.000000000 +0200
+--- tools/duende.c.orig 2008-08-03 20:10:49.000000000 +0200
++++ tools/duende.c 2010-09-30 01:46:03.000000000 +0200
@@ -35,10 +35,13 @@
#include <signal.h>
#include <stdio.h>
@@ -14,7 +14,33 @@
#include <unistd.h>
#include "../MaraDns.h"
-@@ -139,6 +142,10 @@
+@@ -61,13 +64,24 @@
+
+ void log_helper(char *name,int stdout_fd) {
+ char out_buf[1024];
++
++ /* Prefix MaraDNS syslog messages with ident of "maradns:"
++ instead of "/usr/local/sbin/maradns:" */
++ char *needle, *ident;
++ needle = strrchr(name,'/');
++ /* needle found and not at the end of string */
++ if (needle && *(needle + 1) != '\0') {
++ ident = needle + 1;
++ } else {
++ ident = name;
++ }
+
+ /* We can't use our signal handlers because fgets is blocking */
+ signal(SIGTERM,SIG_DFL);
+ signal(SIGHUP,SIG_DFL);
+
+ /* Open up the sys log */
+- openlog(name,0,LOG_DAEMON);
++ openlog(ident,0,LOG_DAEMON);
+
+ /* Drop all privileges */
+ if(chdir(DUENDE_CHROOT_DIR) != 0) {
+@@ -146,6 +160,10 @@
int exit_status;
pid_t pid, log_pid;
int stream1[2]; /* Used for piping */
@@ -25,7 +51,7 @@
if(argv[0] == NULL || argv[1] == NULL) {
printf("Usage: duende [program] [arguments]\n");
exit(1);
-@@ -203,6 +210,23 @@
+@@ -210,6 +228,23 @@
syslog(LOG_ALERT,"log_helper finished, terminating\n");
exit(1);
}