Skip to content
Snippets Groups Projects
Commit ff243c2e authored by deuce's avatar deuce
Browse files

Use cprint() for usage output since ciolib may have been initialized already.

Clear screen first and wait for a keypress before exiting (Win32 may not be
started from a console, and some curses implemetations clear screen on exit)
parent 79d38d1a
No related branches found
No related tags found
No related merge requests found
......@@ -297,7 +297,9 @@ int main(int argc, char **argv)
return(0);
USAGE:
printf("\nusage: syncterm [options] [URL]"
uifcbail();
clrscr();
cprintf("\nusage: syncterm [options] [URL]"
"\n\noptions:\n\n"
"-c = force color mode\n"
"-m = force monochrome mode\n"
......@@ -317,7 +319,8 @@ int main(int argc, char **argv)
"URL format is: (rlogin|telnet)://[user[:password]@]domainname[:port]\n"
"examples: rlogin://deuce:password@nix.synchro.net:5885\n"
" telnet://deuce@nix.synchro.net\n"
" telnet://nix.synchro.net\n"
" telnet://nix.synchro.net\n\nPress any key to exit..."
);
getch();
exit(0);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment