Increased the reception buffer as messages may be bigger

This commit is contained in:
Pierre Pronchery 2013-12-01 06:04:35 +01:00
parent bce4e14c41
commit d52dc6d2a4

View File

@ -464,7 +464,7 @@ static gboolean _on_watch_can_read(GIOChannel * source, GIOCondition condition,
int ret = FALSE; int ret = FALSE;
WPA * wpa = data; WPA * wpa = data;
WPAEntry * entry = &wpa->queue[0]; WPAEntry * entry = &wpa->queue[0];
char buf[256]; /* XXX in wpa */ char buf[1024]; /* XXX in wpa */
gsize cnt; gsize cnt;
GError * error = NULL; GError * error = NULL;
GIOStatus status; GIOStatus status;