Randomm dead code cleanup/spelling errors/made a variable static.
author <brian@gir> <>
Sat, 27 Oct 2007 22:42:10 +0000 (15:42 -0700)
committer <brian@gir> <>
Sat, 27 Oct 2007 22:42:10 +0000 (15:42 -0700)
Makefile.am
README.FIRST
lib/memcached_io.c
tests/Makefile.am
tests/test.c

index 4633706b931d1fbf94ddb715b89a0c1ed44c2b04..7c23b7411e4afbc1ff873a6cc608686498ffa039 100644 (file)
@@ -11,10 +11,6 @@ test-extended: all
 valgrind:
        cd tests; make valgrind; cd ..
 
-valgrind-extended:
-       cd tests; make valgrind-extended; cd ..
-
-
 rpm: all dist
        cp libmemcached-$(VERSION).tar.gz /home/brian/rpmbuild/SOURCES/
        rpmbuild -ba support/libmemcached.spec
index 5f46996dfbd1a62f32ff0b35d11d2cd1f215e71c..dd15b737ed1834f5ce349b37e7573227a8bf43d0 100644 (file)
@@ -3,7 +3,7 @@ Hi!
 If you are getting this code from http://hg.tangent.org/libmemcached then
 continue reading. Otherwise these directions are not for you (well maybe...).
 
-To obtain code from http://hg.tangent.org/libmemached you will need to issue
+To obtain code from http://hg.tangent.org/libmemcached you will need to issue
 the following command:
 
 hg clone http://hg.tangent.org/libmemcached
index 49f6bc686362b70788f3611a091ffe4a52d55d42..d2c803f3dd690393431a3b3af3a358a45324edf4 100644 (file)
@@ -7,7 +7,7 @@
 #include <sys/select.h>
 #include <poll.h>
 
-int io_wait(memcached_st *ptr, unsigned int server_key, unsigned read_or_write)
+static int io_wait(memcached_st *ptr, unsigned int server_key, unsigned read_or_write)
 {
   struct pollfd fds[1];
   short flags= 0;
index 27ccdab333a40869940f89bb56adc08138a4803f..140338d1197e8bfeba23f1311e30131c0ca49077 100644 (file)
@@ -51,6 +51,3 @@ test-extended: testapp
 
 valgrind:
        libtool --mode=execute valgrind --leak-check=yes --show-reachable=yes  testapp
-
-valgrind-extended:
-       libtool --mode=execute valgrind --leak-check=yes --show-reachable=yes  testapp extended
index a625206981a400ac0fb29514b9245252ec121c21..85adaf1cb3006dc28edffaf0597b558a33958800 100644 (file)
@@ -882,10 +882,6 @@ int main(int argc, char *argv[])
     {0, 0, 0, 0}
   };
 
-  /*
-  unsigned int next;
-  for (next= 0; collection[next].name; next++)
-*/
   collection_st *next;
   for (next= collection; next->name; next++)
   {