summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2018-02-09 13:31:37 +0100
committerLennart Poettering <lennart@poettering.net>2018-02-09 19:29:51 +0100
commitcadc80b873794e52cb73235e8c0a03fe665d64af (patch)
tree92c2139a02a6154641ca23385c43de93634c7e7b
parent7fe2903c2315db9d9f501ae255a6b6e4f01ba46c (diff)
downloadsystemd-cadc80b873794e52cb73235e8c0a03fe665d64af.tar.gz
basic/socket-util: drop use of NI_IDN_USE_STD3_ASCII_RULES
The only use of socknameinfo_pretty() is in src/journal-remote/journal-remote.c, to determine the output filename. Replaces #8120.
-rw-r--r--src/basic/socket-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/socket-util.c b/src/basic/socket-util.c
index bd3cf6f869..3b93da7301 100644
--- a/src/basic/socket-util.c
+++ b/src/basic/socket-util.c
@@ -51,7 +51,7 @@
#include "util.h"
#if ENABLE_IDN
-# define IDN_FLAGS (NI_IDN|NI_IDN_USE_STD3_ASCII_RULES)
+# define IDN_FLAGS NI_IDN
#else
# define IDN_FLAGS 0
#endif