Geo: command function names converted to lowercase, as elsewhere.

In Redis MULTIWORDCOMMANDNAME are mapped to functions where the command
name is all lowercase: multiwordcommandnameCommand().
This commit is contained in:
antirez
2015-06-29 12:07:18 +02:00
parent aae0a1f9cc
commit a12192f5ff
4 changed files with 21 additions and 27 deletions

View File

@ -3,12 +3,6 @@
#include "redis.h"
void geoEncodeCommand(redisClient *c);
void geoDecodeCommand(redisClient *c);
void geoRadiusByMemberCommand(redisClient *c);
void geoRadiusCommand(redisClient *c);
void geoAddCommand(redisClient *c);
/* Structures used inside geo.c in order to represent points and array of
* points on the earth. */
typedef struct geoPoint {