]> git.saurik.com Git - redis.git/commitdiff
Merge pull request #743 from Cofyc/fixtypo
authorSalvatore Sanfilippo <antirez@gmail.com>
Thu, 1 Nov 2012 21:26:01 +0000 (14:26 -0700)
committerSalvatore Sanfilippo <antirez@gmail.com>
Thu, 1 Nov 2012 21:26:01 +0000 (14:26 -0700)
fix typo in comments (redis.c, networking.c)

1  2 
src/networking.c

index 844134638c371c60b6595c179bde96010e5bb15c,9a7b6a723c2eeadaff22484ff1b24fae7937a707..22392f06d4d4e6bb417c40b22ad59d680187c538
@@@ -486,11 -486,11 +486,11 @@@ void copyClientOutputBuffer(redisClien
      dst->reply_bytes = src->reply_bytes;
  }
  
 -static void acceptCommonHandler(int fd) {
 +static void acceptCommonHandler(int fd, int flags) {
      redisClient *c;
      if ((c = createClient(fd)) == NULL) {
-         redisLog(REDIS_WARNING,"Error allocating resoures for the client");
-         close(fd); /* May be already closed, just ingore errors */
+         redisLog(REDIS_WARNING,"Error allocating resources for the client");
+         close(fd); /* May be already closed, just ignore errors */
          return;
      }
      /* If maxclient directive is set and this is one client more... close the