libipfix: fix build
authorhauke <hauke@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 3 Jul 2014 20:00:15 +0000 (20:00 +0000)
committerhauke <hauke@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Thu, 3 Jul 2014 20:00:15 +0000 (20:00 +0000)
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
git-svn-id: svn://svn.openwrt.org/openwrt/packages@41497 3c298f89-4303-0410-b956-a3cf2f4a3e73

libs/libipfix/patches/130-fix-string-problems.patch [new file with mode: 0644]

diff --git a/libs/libipfix/patches/130-fix-string-problems.patch b/libs/libipfix/patches/130-fix-string-problems.patch
new file mode 100644 (file)
index 0000000..ab967ec
--- /dev/null
@@ -0,0 +1,29 @@
+--- a/lib/mlog.c
++++ b/lib/mlog.c
+@@ -60,7 +60,7 @@ void debugf ( char fmt[], ... )
+     va_end(args);
+     fprintf ( stderr, "DEBUG <" );
+-    fprintf ( stderr, tmpbuf );
++    fprintf ( stderr, "%s", tmpbuf );
+     fprintf ( stderr, ">\n" );
+     fflush  ( stderr );
+ #endif
+@@ -80,7 +80,7 @@ void errorf ( char fmt[], ... )
+     (void) vsnprintf( tmpbuf, sizeof(tmpbuf), fmt, args );
+     va_end(args);
+-    fprintf ( stderr, tmpbuf );
++    fprintf ( stderr, "%s", tmpbuf );
+ }
+ /*--------------------------------------------------
+@@ -104,7 +104,7 @@ void mlogf ( int vlevel, char fmt[], ...
+     (void) vsnprintf( tmpbuf, sizeof(tmpbuf), fmt, args );
+     va_end(args);
+-    fprintf( mlog_fp, tmpbuf );
++    fprintf( mlog_fp, "%s", tmpbuf );
+     if ( mlog_vlevel > 1 )
+         fflush( mlog_fp );
+ }