summaryrefslogtreecommitdiffstats
path: root/package/kismet/kismet-2007-10-R1-memset.patch
blob: 71a375770083239731181e2ea87d4d5a906bcc08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
diff -urN kismet-2007-10-R1-0rig//kismet_wrapper.cc kismet-2007-10-R1/kismet_wrapper.cc
--- kismet-2007-10-R1-0rig//kismet_wrapper.cc	2007-10-06 23:50:03.000000000 +0200
+++ kismet-2007-10-R1/kismet_wrapper.cc	2009-01-21 01:12:42.000000000 +0100
@@ -27,6 +27,7 @@
 #include <unistd.h>
 
 #include "config.h"
+#include <string.h>
 
 /* Blob of globals since sighandler needs them */
 vector<string> postcli_err;
diff -urN kismet-2007-10-R1-0rig//ringbuf.cc kismet-2007-10-R1/ringbuf.cc
--- kismet-2007-10-R1-0rig//ringbuf.cc	2005-12-11 20:14:39.000000000 +0100
+++ kismet-2007-10-R1/ringbuf.cc	2009-01-21 01:12:26.000000000 +0100
@@ -17,6 +17,7 @@
 */
 
 #include "ringbuf.h"
+#include <string.h>
 
 RingBuffer::RingBuffer(int in_size) {
     ring_len = in_size;
diff -urN kismet-2007-10-R1-0rig//util.cc kismet-2007-10-R1/util.cc
--- kismet-2007-10-R1-0rig//util.cc	2006-08-28 22:37:29.000000000 +0200
+++ kismet-2007-10-R1/util.cc	2009-01-21 01:12:26.000000000 +0100
@@ -22,6 +22,7 @@
 #include <sys/types.h>
 #include <sys/stat.h>
 #include <fcntl.h>
+#include <string.h>
 
 // We need this to make uclibc happy since they don't even have rintf...
 #ifndef rintf
diff -urN kismet-2007-10-R1-0rig//util.h kismet-2007-10-R1/util.h
--- kismet-2007-10-R1-0rig//util.h	2006-08-28 22:37:29.000000000 +0200
+++ kismet-2007-10-R1/util.h	2009-01-21 01:12:26.000000000 +0100
@@ -65,7 +65,7 @@
         end = op.end;
         return *this;
     }
-};
+} swt;
 vector<smart_word_token> SmartStrTokenize(string in_str, string in_split, int return_partial = 1);
 
 vector<string> LineWrap(string in_txt, unsigned int in_hdr_len, unsigned int in_maxlen);