-rw-r--r-- | noncore/net/wellenreiter/libwellenreiter/source/sniff.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/noncore/net/wellenreiter/libwellenreiter/source/sniff.cc b/noncore/net/wellenreiter/libwellenreiter/source/sniff.cc index 9b4e360..e516177 100644 --- a/noncore/net/wellenreiter/libwellenreiter/source/sniff.cc +++ b/noncore/net/wellenreiter/libwellenreiter/source/sniff.cc | |||
@@ -105,8 +105,10 @@ void process_packets(const struct pcap_pkthdr *pkthdr, const unsigned char *pack | |||
105 | wl_loginfo("Found an ad-hoc network"); | 105 | wl_loginfo("Found an ad-hoc network"); |
106 | wl_net.net_type=2; | 106 | wl_net.net_type=2; |
107 | } | 107 | } |
108 | 108 | ||
109 | memset(wl_net.bssid, 0, sizeof(wl_net.bssid)); | ||
110 | |||
109 | if (strcmp (pinfoptr->ssid,NONBROADCASTING) ==0) | 111 | if (strcmp (pinfoptr->ssid,NONBROADCASTING) ==0) |
110 | wl_loginfo("Net is a non-broadcasting network"); | 112 | wl_loginfo("Net is a non-broadcasting network"); |
111 | else | 113 | else |
112 | wl_loginfo("SSID is: %s", pinfoptr->ssid); | 114 | wl_loginfo("SSID is: %s", pinfoptr->ssid); |
@@ -121,9 +123,10 @@ void process_packets(const struct pcap_pkthdr *pkthdr, const unsigned char *pack | |||
121 | wl_net.channel=pinfoptr->channel; | 123 | wl_net.channel=pinfoptr->channel; |
122 | wl_net.wep=pinfoptr->cap_WEP; | 124 | wl_net.wep=pinfoptr->cap_WEP; |
123 | 125 | ||
124 | wl_loginfo("Mac is: %s", pinfoptr->sndhwaddr); | 126 | wl_loginfo("Mac is: %s", pinfoptr->sndhwaddr); |
125 | memcpy(wl_net.mac, pinfoptr->sndhwaddr, sizeof(wl_net.mac)-1);; | 127 | memset(wl_net.mac, 0, sizeof(wl_net.mac)); |
128 | memcpy(wl_net.mac, pinfoptr->sndhwaddr, sizeof(wl_net.mac)-1); | ||
126 | 129 | ||
127 | if(!send_network_found((char *)guihost, guiport, &wl_net)) | 130 | if(!send_network_found((char *)guihost, guiport, &wl_net)) |
128 | { | 131 | { |
129 | wl_logerr("Error sending data to UI: %s", strerror(errno)); | 132 | wl_logerr("Error sending data to UI: %s", strerror(errno)); |