From: Jakub Jelinek Date: Sat, 7 Dec 2013 08:10:02 +0000 (+0100) Subject: * ssp.c (fail): Avoid -Wformat-security warning. X-Git-Tag: releases/gcc-4.9.0~2221 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b32f3fefd271f0c3c6b4c4c91ea89833d9e14c40;p=thirdparty%2Fgcc.git * ssp.c (fail): Avoid -Wformat-security warning. From-SVN: r205775 --- diff --git a/libssp/ChangeLog b/libssp/ChangeLog index c127fce7f3fa..6291561e0895 100644 --- a/libssp/ChangeLog +++ b/libssp/ChangeLog @@ -1,3 +1,7 @@ +2013-12-07 Jakub Jelinek + + * ssp.c (fail): Avoid -Wformat-security warning. + 2013-09-20 Alan Modra * configure: Regenerate. diff --git a/libssp/ssp.c b/libssp/ssp.c index aaa5a322c8de..96adf17ce3fe 100644 --- a/libssp/ssp.c +++ b/libssp/ssp.c @@ -1,5 +1,5 @@ /* Stack protector support. - Copyright (C) 2005, 2009 Free Software Foundation, Inc. + Copyright (C) 2005-2013 Free Software Foundation, Inc. This file is part of GCC. @@ -136,7 +136,7 @@ fail (const char *msg1, size_t msg1len, const char *msg3) #ifdef HAVE_SYSLOG_H /* Only send the error to syslog if there was no tty available. */ else - syslog (LOG_CRIT, msg3); + syslog (LOG_CRIT, "%s", msg3); #endif /* HAVE_SYSLOG_H */ /* Try very hard to exit. Note that signals may be blocked preventing