projects
/
awesomized
/
libmemcached
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
|
github
raw
|
patch
| inline |
side by side
(parent:
fb56c33
)
More tests.
author
Brian Aker
<brian@tangent.org>
Sat, 12 Feb 2011 01:06:49 +0000
(17:06 -0800)
committer
Brian Aker
<brian@tangent.org>
Sat, 12 Feb 2011 01:06:49 +0000
(17:06 -0800)
libmemcached/io.c
patch
|
blob
|
history
diff --git
a/libmemcached/io.c
b/libmemcached/io.c
index 0cef65f04b0018b869f451caeb2006428dd7a0bd..167b3e6b0d7f521aac98f3070e7d53877a54cee9 100644
(file)
--- a/
libmemcached/io.c
+++ b/
libmemcached/io.c
@@
-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;
}
}