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

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