summaryrefslogtreecommitdiff
path: root/noncore/net/wellenreiter
Side-by-side diff
Diffstat (limited to 'noncore/net/wellenreiter') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/libwellenreiter/source/proto.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/noncore/net/wellenreiter/libwellenreiter/source/proto.cc b/noncore/net/wellenreiter/libwellenreiter/source/proto.cc
index 359bdb5..305f401 100644
--- a/noncore/net/wellenreiter/libwellenreiter/source/proto.cc
+++ b/noncore/net/wellenreiter/libwellenreiter/source/proto.cc
@@ -1,6 +1,6 @@
/*
- * Communication protocol
+ * Communication protocol
*
* $Id$
*/
@@ -11,9 +11,9 @@
int send_network_found (const char *guihost, int guiport, void *structure)
{
wl_network_t *ptr;
char buffer[2048];
- char temp[4];
+ char temp[5];
ptr = (wl_network_t *)structure;
memset(buffer, 0, 2048);
@@ -55,11 +55,16 @@ int send_network_found (const char *guihost, int guiport, void *structure)
snprintf(temp, 4, "0%d", ptr->ssid_len);
memcpy(buffer + 23, temp, 3);
+ fprintf( stderr, "Temp is %s\n", temp );
+ fprintf( stderr, "ssid_len is %d\n", ptr->ssid_len );
+
/* Set ssid */
memcpy(buffer + 26, ptr->bssid, ptr->ssid_len);
+ fprintf( stderr, "Buffer is %s\n", buffer );
+
/* Send prepared buffer to GUI */
sendcomm(guihost, guiport, buffer);
return 1;