More tests.
authorBrian Aker <brian@tangent.org>
Sat, 12 Feb 2011 01:06:49 +0000 (17:06 -0800)
committerBrian Aker <brian@tangent.org>
Sat, 12 Feb 2011 01:06:49 +0000 (17:06 -0800)
libmemcached/io.c

index 0cef65f04b0018b869f451caeb2006428dd7a0bd..167b3e6b0d7f521aac98f3070e7d53877a54cee9 100644 (file)
@@ -654,10 +654,11 @@ static ssize_t io_flush(memcached_server_write_instance_st ptr,
           fprintf(stderr, "%s:%d (%s)\n", __FILE__, __LINE__,__func__);fflush(stdout);
           return -1;
         }
+      case ENOTCONN:
       default:
+        fprintf(stderr, "%s:%d (%s)(%s)\n", __FILE__, __LINE__,__func__, strerror(errno));fflush(stdout);
         memcached_quit_server(ptr, true);
         *error= MEMCACHED_ERRNO;
-        fprintf(stderr, "%s:%d (%s)(%s)\n", __FILE__, __LINE__,__func__, strerror(errno));fflush(stdout);
         return -1;
       }
     }