From: Zbigniew Jędrzejewski-Szmek Date: Fri, 9 Feb 2018 12:31:37 +0000 (+0100) Subject: basic/socket-util: drop use of NI_IDN_USE_STD3_ASCII_RULES X-Git-Tag: v238~117 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cadc80b873794e52cb73235e8c0a03fe665d64af;p=platform%2Fupstream%2Fsystemd.git 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. --- diff --git a/src/basic/socket-util.c b/src/basic/socket-util.c index bd3cf6f..3b93da7 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