aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-03-15 22:05:01 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-03-15 22:05:01 +0000
commitb169aa2992fddc57cc91ef71d3105bdf83eeb77c (patch)
tree392b4451ae00e37bc67b296e00e10424a5c9306f
parent9189ac1141de4c9f8d61fadfb1a435b0b9436d18 (diff)
- Nick made the curl tool accept globbing ranges that only is one number, i.e
you can now use [1-1] without curl complaining.
-rw-r--r--CHANGES4
-rw-r--r--src/urlglob.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index 3433be3c5..e6458feb3 100644
--- a/CHANGES
+++ b/CHANGES
@@ -6,6 +6,10 @@
Changelog
+Daniel (15 March 2007)
+- Nick made the curl tool accept globbing ranges that only is one number, i.e
+ you can now use [1-1] without curl complaining.
+
Daniel (10 March 2007)
- Eygene Ryabinkin:
diff --git a/src/urlglob.c b/src/urlglob.c
index 4dbd2ba2c..97b73f28a 100644
--- a/src/urlglob.c
+++ b/src/urlglob.c
@@ -214,7 +214,7 @@ static GlobCode glob_range(URLGlob *glob, char *pattern,
rc = sscanf(pattern, "%d-%d%c%d%c", &min_n, &max_n, &sep, &step, &sep2);
- if ((rc < 2) || (min_n >= max_n)) {
+ if ((rc < 2) || (min_n > max_n)) {
/* the pattern is not well-formed */
snprintf(glob->errormsg, sizeof(glob->errormsg),
"error: bad range specification after pos %d\n", pos);