]> git.saurik.com Git - redis.git/commitdiff
Add used allocator in redis-server -v output.
authorantirez <antirez@gmail.com>
Sat, 24 Mar 2012 10:52:56 +0000 (11:52 +0100)
committerantirez <antirez@gmail.com>
Sat, 24 Mar 2012 10:53:03 +0000 (11:53 +0100)
src/redis.c

index bae852b8fc43f909b6845bd40a87076f6a9359b8..2f27b4ddbf7701483240a8db9afab3f5e1a2101d 100644 (file)
@@ -2236,8 +2236,8 @@ void daemonize(void) {
 }
 
 void version() {
 }
 
 void version() {
-    printf("Redis server version %s (%s:%d)\n", REDIS_VERSION,
-        redisGitSHA1(), atoi(redisGitDirty()) > 0);
+    printf("Redis server v=%s sha=%s:%d malloc=%s\n", REDIS_VERSION,
+        redisGitSHA1(), atoi(redisGitDirty()) > 0, ZMALLOC_LIB);
     exit(0);
 }
 
     exit(0);
 }