basic/socket-util: drop use of NI_IDN_USE_STD3_ASCII_RULES
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 9 Feb 2018 12:31:37 +0000 (13:31 +0100)
committerLennart Poettering <lennart@poettering.net>
Fri, 9 Feb 2018 18:29:51 +0000 (19:29 +0100)
The only use of socknameinfo_pretty() is in src/journal-remote/journal-remote.c,
to determine the output filename.

Replaces #8120.

src/basic/socket-util.c

index bd3cf6f..3b93da7 100644 (file)
@@ -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