summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2015-06-27 09:38:39 +0200
committerantirez <antirez@gmail.com>2015-06-27 09:38:56 +0200
commit710c05ac2ab0eedc56cc19ba16ad8fc40d24e81d (patch)
tree726c6e11c6243854951d99aa951a6fd9e379ed7b
parentfa9d62d34fd739160b2a45b713e912a6c4dabb75 (diff)
downloadredis-710c05ac2ab0eedc56cc19ba16ad8fc40d24e81d.tar.gz
Geo: remove useless variable. geoRadiusGeneric() top comment improved.
-rw-r--r--src/geo.c12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/geo.c b/src/geo.c
index 40d962f31..72dadb885 100644
--- a/src/geo.c
+++ b/src/geo.c
@@ -412,9 +412,9 @@ void geoAddCommand(redisClient *c) {
#define RADIUS_COORDS 1
#define RADIUS_MEMBER 2
+/* GEORADIUS key x y radius unit [WITHDIST] [WITHHASH] [WITHCOORD] [ASC|DESC]
+ * GEORADIUSBYMEMBER key member radius unit ... options ... */
static void geoRadiusGeneric(redisClient *c, int type) {
- /* type == cords: [cmd, key, long, lat, radius, units, [optionals]]
- * type == member: [cmd, key, member, radius, units, [optionals]] */
robj *key = c->argv[1];
/* Look up the requested zset */
@@ -451,7 +451,7 @@ static void geoRadiusGeneric(redisClient *c, int type) {
}
/* Discover and populate all optional parameters. */
- int withdist = 0, withhash = 0, withcoords = 0, noproperties = 0;
+ int withdist = 0, withhash = 0, withcoords = 0;
int sort = SORT_NONE;
if (c->argc > base_args) {
int remaining = c->argc - base_args;
@@ -463,11 +463,7 @@ static void geoRadiusGeneric(redisClient *c, int type) {
withhash = 1;
else if (!strncasecmp(arg, "withcoord", 9))
withcoords = 1;
- else if (!strncasecmp(arg, "noprop", 6) ||
- !strncasecmp(arg, "withoutprop", 11))
- noproperties = 1;
- else if (!strncasecmp(arg, "asc", 3) ||
- !strncasecmp(arg, "sort", 4))
+ else if (!strncasecmp(arg, "asc", 3))
sort = SORT_ASC;
else if (!strncasecmp(arg, "desc", 4))
sort = SORT_DESC;