mirror of
https://github.com/openwrt/packages.git
synced 2025-07-19 12:04:30 +00:00
Changes since v0.12: 7fb6416 tests: fix segfault with no /etc/protocols (#286) 0dddc42 README: Update branch references in badge URLs 5eea3f4 github: Update branch names for actions b102523 scripts: get debug info for bug reports 334bb9c Make listening socket creation optional. (#297) a4e7b65 {etc,man}: improve check_route address notification flag documentation (#301) ffa276f Support ELL 0.68 l_netlink_message API. (#303) 269f10a gh: daily validation of the ELL compatibility (#308) 824ff8c Support listener events (#304) 5d9f33a Some clean-ups (#305) 05a08bf lib: switch to v4.0.1: only added items (#306) 3702487 scripts: debug: also print system info (#307) 5d8db15 ell: only include 'ell/ell.h' header (#309) 772afe9 AUTHORS: Update e-mail addresses. 0c36dba mptcpd 0.13 Drop backported patches which are part of the release. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
24 lines
746 B
Diff
24 lines
746 B
Diff
From 7e1cc2d933976c20bec932613172b56c5172b7f0 Mon Sep 17 00:00:00 2001
|
|
From: lifei76 <lifei76@meituan.com>
|
|
Date: Thu, 20 Jul 2023 18:24:37 +0800
|
|
Subject: [PATCH 09/11] 7
|
|
|
|
---
|
|
src/configuration.c | 5 ++++-
|
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
|
|
|
--- a/src/configuration.c
|
|
+++ b/src/configuration.c
|
|
@@ -51,7 +51,10 @@
|
|
# error Problem configuring default log message destination.
|
|
#endif
|
|
/// Name of the default logging function determined at compile-time.
|
|
-#define MPTCPD_SET_LOG_FUNCTION MPTCPD_CONCAT(l_log_set_, MPTCPD_LOGGER)
|
|
+ // #define MPTCPD_SET_LOG_FUNCTION MPTCPD_CONCAT(l_log_set_, MPTCPD_LOGGER)
|
|
+
|
|
+#define MPTCPD_SET_LOG_FUNCTION l_log_set_stderr
|
|
+
|
|
|
|
/**
|
|
* @brief Get the function that sets the log message destination.
|