You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
553 B

From 44ced2bbf1d6b39bb36c3cb8be6e40c8764e2e8a Mon Sep 17 00:00:00 2001
From: Yousong Zhou <yszhou4tech@gmail.com>
Date: Thu, 30 Apr 2015 13:57:36 +0800
Subject: [PATCH 7/7] l2tp_log: remove log prefix that will duplicate with
procd.
---
misc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/misc.c
+++ b/misc.c
@@ -61,7 +61,7 @@ void l2tp_log (int level, const char *fm
init_log();
SYSLOG_CALL( syslog (level, "%s", buf) );
} else {
- fprintf(stderr, "xl2tpd[%d]: %s", getpid(), buf);
+ fprintf(stderr, "%s", buf);
}
}