Give an error message when tincctl info cannot parse the given subnet or address.
authorGuus Sliepen <guus@tinc-vpn.org>
Sun, 15 Jul 2012 23:09:47 +0000 (01:09 +0200)
committerGuus Sliepen <guus@tinc-vpn.org>
Sun, 15 Jul 2012 23:09:47 +0000 (01:09 +0200)
src/info.c

index d0764da..f354f96 100644 (file)
@@ -164,8 +164,10 @@ static int info_node(int fd, const char *item) {
 static int info_subnet(int fd, const char *item) {
        subnet_t subnet, find;
 
-       if(!str2net(&find, item))
+       if(!str2net(&find, item)) {
+               fprintf(stderr, "Could not parse subnet or address '%s'.\n", item);
                return 1;
+       }
 
        bool address = !strchr(item, '/');
        bool weight = strchr(item, '#');