aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-tpm/tpm-tools/tpm-tools-1.3.8/03-fix-bool-error-parseStringWithValues.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-tpm/tpm-tools/tpm-tools-1.3.8/03-fix-bool-error-parseStringWithValues.patch')
-rw-r--r--recipes-tpm/tpm-tools/tpm-tools-1.3.8/03-fix-bool-error-parseStringWithValues.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/recipes-tpm/tpm-tools/tpm-tools-1.3.8/03-fix-bool-error-parseStringWithValues.patch b/recipes-tpm/tpm-tools/tpm-tools-1.3.8/03-fix-bool-error-parseStringWithValues.patch
new file mode 100644
index 0000000..9497e89
--- /dev/null
+++ b/recipes-tpm/tpm-tools/tpm-tools-1.3.8/03-fix-bool-error-parseStringWithValues.patch
@@ -0,0 +1,30 @@
+Title: Fix boolean comparison error (and FTBFS with gcc-5)
+Date: 2015-06-28
+Author: Pierre Chifflier <pollux@debian.org>
+Bug-Debian: http://bugs.debian.org/778147
+Index: tpm-tools/src/tpm_mgmt/tpm_nvcommon.c
+===================================================================
+--- tpm-tools.orig/src/tpm_mgmt/tpm_nvcommon.c
++++ tpm-tools/src/tpm_mgmt/tpm_nvcommon.c
+@@ -140,8 +140,8 @@ int parseStringWithValues(const char *aA
+ aArg);
+ return -1;
+ }
+- if (!aArg[offset+numbytes] == '|' &&
+- !aArg[offset+numbytes] == 0) {
++ if (!(aArg[offset+numbytes] == '|' ||
++ aArg[offset+numbytes] == 0)) {
+ logError(_("Illegal character following "
+ "hexadecimal number in %s\n"),
+ aArg + offset);
+@@ -164,8 +164,8 @@ int parseStringWithValues(const char *aA
+ return -1;
+ }
+
+- if (!aArg[offset+numbytes] == '|' &&
+- !aArg[offset+numbytes] == 0) {
++ if (!(aArg[offset+numbytes] == '|' ||
++ aArg[offset+numbytes] == 0)) {
+ logError(_("Illegal character following decimal "
+ "number in %s\n"),
+ aArg + offset);