Introduction
Introduction Statistics Contact Development Disclaimer Help
Order parameters by alphabet. - geomyidae - A small C-based gopherd.
git clone git://bitreich.org/geomyidae/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfri…
Log
Files
Refs
Tags
README
LICENSE
---
commit 1c649c8667e849d887d2946f7666fd60752a2570
parent 79f935c4bb64e62262e7c63623d45d681b95d5b2
Author: Christoph Lohmann <[email protected]>
Date: Mon, 1 Feb 2021 20:28:26 +0100
Order parameters by alphabet.
Diffstat:
M main.c | 36 ++++++++++++++++-------------…
1 file changed, 18 insertions(+), 18 deletions(-)
---
diff --git a/main.c b/main.c
@@ -460,41 +460,35 @@ main(int argc, char *argv[])
case 'c':
usechroot = 1;
break;
- case 'p':
- port = EARGF(usage());
- if (sport == NULL)
- sport = port;
- break;
- case 'l':
- logfile = EARGF(usage());
- break;
case 'd':
dofork = 0;
break;
case 'e':
nocgi = 1;
break;
- case 'v':
- loglvl = atoi(EARGF(usage()));
- break;
- case 'u':
- user = EARGF(usage());
- break;
case 'g':
group = EARGF(usage());
break;
+ case 'h':
+ ohost = EARGF(usage());
+ break;
case 'i':
bindips = xrealloc(bindips, sizeof(*bindips) * (++nbindips));
bindips[nbindips-1] = EARGF(usage());
break;
- case 'h':
- ohost = EARGF(usage());
+ case 'l':
+ logfile = EARGF(usage());
+ break;
+ case 'n':
+ revlookup = 0;
break;
case 'o':
sport = EARGF(usage());
break;
- case 'n':
- revlookup = 0;
+ case 'p':
+ port = EARGF(usage());
+ if (sport == NULL)
+ sport = port;
break;
#ifdef ENABLE_TLS
case 't':
@@ -503,6 +497,12 @@ main(int argc, char *argv[])
certfile = EARGF(usage());
break;
#endif /* ENABLE_TLS */
+ case 'u':
+ user = EARGF(usage());
+ break;
+ case 'v':
+ loglvl = atoi(EARGF(usage()));
+ break;
default:
usage();
} ARGEND;
You are viewing proxied material from bitreich.org. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.