vlan: Fix build with security flags turned on

Limit the license checksum to the file header

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>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
Khem Raj 2017-06-17 10:21:37 -07:00 committed by Armin Kuster
parent 47545627ae
commit 42a2a30e6f
2 changed files with 38 additions and 2 deletions

View File

@ -0,0 +1,34 @@
From 400b8f235377f677a7a760f1e3a1cd26d95140bc Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Fri, 16 Jun 2017 22:58:18 -0700
Subject: [PATCH] Add printf format and silence format-security warnings
Fix
vconfig.c:66:4: error: format not a string literal and no format arguments [-Werror=format-security]
fprintf(stdout,usage);
^~~~~~~
Upstream-Status: Pending
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
vconfig.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vconfig.c b/vconfig.c
index 5057cfd..83137ba 100644
--- a/vconfig.c
+++ b/vconfig.c
@@ -63,7 +63,7 @@ static char* usage =
" is OFF.\n";
void show_usage() {
- fprintf(stdout,usage);
+ fprintf(stdout, "%s", usage);
}
int hex_to_bytes(char* bytes, int bytes_length, char* hex_str) {
--
2.13.1

View File

@ -1,10 +1,12 @@
SUMMARY = "VLAN provides vconfig utility"
SECTION = "misc"
LICENSE = "GPLv2"
LIC_FILES_CHKSUM = "file://vconfig.c;md5=293ef69c4e88434d37a5ee577a5288cb"
LIC_FILES_CHKSUM = "file://vconfig.c;beginline=1;endline=19;md5=094ca47de36c20c598b15b32c270ce0a"
SRC_URI = "http://${BPN}.sourcearchive.com/downloads/${PV}-3ubuntu9/${BPN}_${PV}.orig.tar.gz \
file://no-HOME-includes.patch"
file://no-HOME-includes.patch \
file://0001-Add-printf-format-and-silence-format-security-warnin.patch \
"
SRC_URI[md5sum] = "5f0c6060b33956fb16e11a15467dd394"
SRC_URI[sha256sum] = "3b8f0a1bf0d3642764e5f646e1f3bbc8b1eeec474a77392d9aeb4868842b4cca"