1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-02-10 13:57:25 +03:00

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.
This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2018-02-09 13:31:37 +01:00 committed by Lennart Poettering
parent 7fe2903c23
commit cadc80b873

View 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