Fixed stupid bug which prevented any command line options from being

understood.

Submitted by:	Uwe Arndt (arndt@mailhost.uni-koblenz.de)
This commit is contained in:
David Greenman 1994-08-31 17:20:12 +00:00
parent ac47fce534
commit f114b8260c

View File

@ -78,7 +78,7 @@ main(argc, argv)
autologin = 1;
while ((ch = getopt(argc, argv, "dgintv")) != EOF) {
switch (*cp) {
switch (ch) {
case 'd':
options |= SO_DEBUG;
debug++;