From b32f3fefd271f0c3c6b4c4c91ea89833d9e14c40 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Sat, 7 Dec 2013 09:10:02 +0100 Subject: * ssp.c (fail): Avoid -Wformat-security warning. From-SVN: r205775 --- libssp/ChangeLog | 4 ++++ libssp/ssp.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) (limited to 'libssp') diff --git a/libssp/ChangeLog b/libssp/ChangeLog index c127fce7f3f..6291561e089 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 aaa5a322c8d..96adf17ce3f 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 -- cgit v1.2.3