From: Adhemerval Zanella Date: Sun, 11 Apr 2021 02:42:12 +0000 (-0300) Subject: misc: syslog: Use static const for AF_UNIX address X-Git-Tag: glibc-2.34~652 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ad1a81c8e84eed232ed42a2bf50a160c1447600;p=thirdparty%2Fglibc.git misc: syslog: Use static const for AF_UNIX address Checked on x86_64-linux-gnu. --- diff --git a/misc/syslog.c b/misc/syslog.c index e228860d22f..ee83b1bb763 100644 --- a/misc/syslog.c +++ b/misc/syslog.c @@ -302,8 +302,12 @@ __vsyslog_internal(int pri, const char *fmt, va_list ap, free (buf); } -static struct sockaddr_un SyslogAddr; /* AF_UNIX address of local logger */ - +/* AF_UNIX address of local logger */ +static const struct sockaddr_un SyslogAddr = + { + .sun_family = AF_UNIX, + .sun_path = _PATH_LOG + }; static void openlog_internal(const char *ident, int logstat, int logfac) @@ -317,9 +321,6 @@ openlog_internal(const char *ident, int logstat, int logfac) int retry = 0; while (retry < 2) { if (LogFile == -1) { - SyslogAddr.sun_family = AF_UNIX; - (void)strncpy(SyslogAddr.sun_path, _PATH_LOG, - sizeof(SyslogAddr.sun_path)); if (LogStat & LOG_NDELAY) { LogFile = __socket(AF_UNIX, LogType | SOCK_CLOEXEC, 0); if (LogFile == -1)