diff libfaim/aim_rxqueue.c @ 835:88f8f98de02d

[gaim-migrate @ 845] libfaim changes. should improve reliablity and stability. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sun, 03 Sep 2000 23:22:05 +0000
parents 9a123b171f46
children 595ac7759563
line wrap: on
line diff
--- a/libfaim/aim_rxqueue.c	Sat Sep 02 12:46:05 2000 +0000
+++ b/libfaim/aim_rxqueue.c	Sun Sep 03 23:22:05 2000 +0000
@@ -42,7 +42,6 @@
    */
   faim_mutex_lock(&conn->active);
   if (recv(conn->fd, generic, 6, MSG_WAITALL) < 6){
-    printf("faim: flap: read underflow (header)\n");
     aim_conn_close(conn);
     faim_mutex_unlock(&conn->active);
     return -1;
@@ -91,7 +90,6 @@
 
   /* read the data portion of the packet */
   if (recv(conn->fd, newrx->data, newrx->commandlen, MSG_WAITALL) < newrx->commandlen){
-    printf("faim: flap: read underflow (payload)\n");
     free(newrx->data);
     free(newrx);
     aim_conn_close(conn);