mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-09 17:59:26 +00:00
rdate: Fix build with hardening
Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
This commit is contained in:
+33
@@ -0,0 +1,33 @@
|
|||||||
|
From f58bcb43c31d08de58853b088681cbe4df36cbf9 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Khem Raj <raj.khem@gmail.com>
|
||||||
|
Date: Mon, 26 Jun 2017 22:50:56 -0700
|
||||||
|
Subject: [PATCH] src/rdate: Fix printf format errors
|
||||||
|
|
||||||
|
Fixes
|
||||||
|
|
||||||
|
rdate.c:85:41: error: format not a string literal and no format arguments [-Werror=format-security]
|
||||||
|
| syslog(is_error?LOG_WARNING:LOG_INFO, buf);
|
||||||
|
|
||||||
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
||||||
|
---
|
||||||
|
Upstream-Status: Submitted
|
||||||
|
|
||||||
|
src/rdate.c | 2 +-
|
||||||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/src/rdate.c b/src/rdate.c
|
||||||
|
index 5c3e829..943d481 100644
|
||||||
|
--- a/src/rdate.c
|
||||||
|
+++ b/src/rdate.c
|
||||||
|
@@ -82,7 +82,7 @@ write_log(int is_error, char *format, ...)
|
||||||
|
return; /* Error, which we can't report because this _is_ the error
|
||||||
|
reporting mechanism */
|
||||||
|
if(log_mode)
|
||||||
|
- syslog(is_error?LOG_WARNING:LOG_INFO, buf);
|
||||||
|
+ syslog(is_error?LOG_WARNING:LOG_INFO, "%s", buf);
|
||||||
|
if(is_error || print_mode)
|
||||||
|
fprintf(is_error?stderr:stdout, "%s: %s\n", argv0, buf);
|
||||||
|
}
|
||||||
|
--
|
||||||
|
2.13.2
|
||||||
|
|
||||||
@@ -11,7 +11,9 @@ SECTION = "Applications/System"
|
|||||||
LICENSE = "GPLv2"
|
LICENSE = "GPLv2"
|
||||||
LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
|
LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
|
||||||
|
|
||||||
SRC_URI= "https://www.aelius.com/njh/${BPN}/${BP}.tar.gz"
|
SRC_URI = "https://www.aelius.com/njh/${BPN}/${BP}.tar.gz \
|
||||||
|
file://0001-src-rdate-Fix-printf-format-errors.patch \
|
||||||
|
"
|
||||||
SRC_URI[md5sum] = "0a4f612480777fdf25264ac03c57eae6"
|
SRC_URI[md5sum] = "0a4f612480777fdf25264ac03c57eae6"
|
||||||
SRC_URI[sha256sum] = "6e800053eaac2b21ff4486ec42f0aca7214941c7e5fceedd593fa0be99b9227d"
|
SRC_URI[sha256sum] = "6e800053eaac2b21ff4486ec42f0aca7214941c7e5fceedd593fa0be99b9227d"
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user