Enlightenment CVS committal

Author  : tsauerbeck
Project : misc
Module  : embrace

Dir     : misc/embrace/src/plugins/pop3


Modified Files:
        pop3.c 


Log Message:
don't die on expected input data
===================================================================
RCS file: /cvsroot/enlightenment/misc/embrace/src/plugins/pop3/pop3.c,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- pop3.c      26 Apr 2005 08:24:13 -0000      1.17
+++ pop3.c      17 May 2005 18:37:26 -0000      1.18
@@ -1,5 +1,5 @@
 /*
- * $Id: pop3.c,v 1.17 2005/04/26 08:24:13 tsauerbeck Exp $
+ * $Id: pop3.c,v 1.18 2005/05/17 18:37:26 tsauerbeck Exp $
  *
  * Copyright (C) 2004 Embrace project.
  *
@@ -91,7 +91,8 @@
                QUIT ();
                return 0;
        } else if (strncmp (inbuf, "+OK", 3)) {
-               assert (false);
+               fprintf (stderr, "[pop3] unexpected reply: %s\n", inbuf);
+               QUIT ();
                return 0;
        }
 




-------------------------------------------------------
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7412&alloc_id=16344&op=click
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to