summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConrad Kostecki <conrad@kostecki.com>2018-10-28 19:13:17 +0100
committerPatrice Clement <monsieurp@gentoo.org>2018-10-30 00:14:54 +0100
commita05299dd81c8b959f5590e975e8f1c170e84b6b8 (patch)
treea3f63ae91b78df245183617e46eea5c91d1f0441 /dev-libs/nmeap/files
parentapp-misc/prog-express: drop old version. (diff)
downloadgentoo-a05299dd81c8b959f5590e975e8f1c170e84b6b8.tar.gz
gentoo-a05299dd81c8b959f5590e975e8f1c170e84b6b8.tar.bz2
gentoo-a05299dd81c8b959f5590e975e8f1c170e84b6b8.zip
dev-libs/nmeap: bump to EAPI=7.
Also updated metadata.xml and fixed a compiler warning. Signed-off-by: Conrad Kostecki <conrad@kostecki.com> Package-Manager: Portage-2.3.51, Repoman-2.3.11 Closes: https://github.com/gentoo/gentoo/pull/10279 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'dev-libs/nmeap/files')
-rw-r--r--dev-libs/nmeap/files/nmeap-0.3-fix-unitialized-variable.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/dev-libs/nmeap/files/nmeap-0.3-fix-unitialized-variable.patch b/dev-libs/nmeap/files/nmeap-0.3-fix-unitialized-variable.patch
new file mode 100644
index 000000000000..46dcbea64079
--- /dev/null
+++ b/dev-libs/nmeap/files/nmeap-0.3-fix-unitialized-variable.patch
@@ -0,0 +1,11 @@
+--- a/src/nmeap01.c 2005-05-06 20:29:41.000000000 +0200
++++ b/src/nmeap01.c 2018-10-28 19:10:49.000000000 +0100
+@@ -282,7 +282,7 @@
+ */
+ int nmeap_process(nmeap_context_t *context)
+ {
+- int id;
++ int id = 0;
+ int i;
+ nmeap_sentence_t *s;
+