From: Mark Wooding Date: Mon, 8 Dec 2008 12:11:28 +0000 (+0000) Subject: server: Actually recognize -n on the command line. X-Git-Tag: 1.0.0pre8~54 X-Git-Url: https://git.distorted.org.uk/~mdw/tripe/commitdiff_plain/dd1cec9bf4dea5f6a68bcf5d3c47016f779558ea server: Actually recognize -n on the command line. For some reason this got missed out of the short-options list. I've now eyeballed the long- and short-options lists and checked that there aren't any other missing entries. --- diff --git a/server/tripe.c b/server/tripe.c index 60ab4fd8..522fe7f1 100644 --- a/server/tripe.c +++ b/server/tripe.c @@ -165,7 +165,7 @@ int main(int argc, char *argv[]) { 0, 0, 0, 0 } }; - i = mdwopt(argc, argv, "hvuDU:G:b:p:d:k:K:t:a:" T("T:"), + i = mdwopt(argc, argv, "hvuDU:G:b:n:p:d:k:K:t:a:" T("T:"), opts, 0, 0, 0); if (i < 0) break;