]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Fix a warning message. (Found by rransom)
authorNick Mathewson <nickm@torproject.org>
Wed, 20 Jul 2011 17:15:04 +0000 (13:15 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 20 Jul 2011 17:15:04 +0000 (13:15 -0400)
src/or/config.c

index efee014894a01de0dfcc93b4c09bd064afe2d43b..1ad4a345d293f026cd849e42913773c023bc2c5f 100644 (file)
@@ -4941,7 +4941,7 @@ parse_client_port_config(smartlist_t *out,
        mainport = (int)tor_parse_long(ports->value, 10, 0, 65535, &ok, NULL);
        if (!ok) {
          log_warn(LD_CONFIG, "%sListenAddress can only be used with a single "
-                  "%sPort with value \"auto\" or 65535.", portname, portname);
+                  "%sPort with value \"auto\" or 1-65535.", portname, portname);
          return -1;
        }
      }