server: correct comment typo on port being after ':'
authorJens Axboe <axboe@fb.com>
Tue, 25 Mar 2014 17:37:56 +0000 (10:37 -0700)
committerJens Axboe <axboe@fb.com>
Tue, 25 Mar 2014 17:37:56 +0000 (10:37 -0700)
We use commas in fio, since that works equally well on IPv4
and IPv6.

Signed-off-by: Jens Axboe <axboe@fb.com>
server.c

index 2f1216288b8a1b6bfc9160c2b318d67a5954b16f..32d69140da20cdb4a8f48c7dcdf72f668b260690 100644 (file)
--- a/server.c
+++ b/server.c
@@ -1485,7 +1485,7 @@ int fio_server_parse_string(const char *str, char **ptr, int *is_sock,
        }
 
        /*
-        * If no port seen yet, check if there's a last ':' at the end
+        * If no port seen yet, check if there's a last ',' at the end
         */
        if (!lport) {
                portp = strchr(host, ',');