mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 07:30:32 -04:00
While here add the ISO/IEC and ITU licenses and fix a compiler warning regarding a mis-compiled comparison (!a == b) --> (!(a == b)) to not compare !a with b (while !(a == b) was clearly intended).
12 lines
291 B
C
12 lines
291 B
C
--- ldecod/src/configfile.c.orig 2020-09-29 10:22:20 UTC
|
|
+++ ldecod/src/configfile.c
|
|
@@ -66,6 +66,9 @@
|
|
#include "configfile.h"
|
|
#define MAX_ITEMS_TO_PARSE 10000
|
|
|
|
+InputParameters cfgparams;
|
|
+char errortext[ET_SIZE];
|
|
+
|
|
static void PatchInp (InputParameters *p_Inp);
|
|
|
|
/*!
|