1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-31 16:57:10 +00:00

MF non-crypto: 1.13: document -u in usage.

This commit is contained in:
Ruslan Ermilov 2001-07-05 14:06:27 +00:00
parent ac84cb970a
commit a5493c1b77
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=79323
2 changed files with 16 additions and 16 deletions

View File

@ -108,8 +108,8 @@ usage()
"[-4] [-6] [-8] [-E] [-K] [-L] [-N] [-S tos] [-X atype] [-c] [-d]", "[-4] [-6] [-8] [-E] [-K] [-L] [-N] [-S tos] [-X atype] [-c] [-d]",
"\n\t[-e char] [-k realm] [-l user] [-f/-F] [-n tracefile] ", "\n\t[-e char] [-k realm] [-l user] [-f/-F] [-n tracefile] ",
#else #else
"[-4] [-6] [-8] [-E] [-L] [-N] [-S tos] [-c] [-d] [-e char] [-l user]", "[-4] [-6] [-8] [-E] [-L] [-N] [-S tos] [-c] [-d]",
"\n\t[-n tracefile] ", "\n\t[-e char] [-l user] [-n tracefile] ",
#endif #endif
#if defined(TN3270) && defined(unix) #if defined(TN3270) && defined(unix)
# ifdef AUTHENTICATION # ifdef AUTHENTICATION
@ -117,13 +117,13 @@ usage()
"[-noasyncnet] [-r] [-s src_addr] [-t transcom] ", "[-noasyncnet] [-r] [-s src_addr] [-t transcom] ",
# else # else
"[-noasynch] [-noasynctty] [-noasyncnet] [-r]\n\t" "[-noasynch] [-noasynctty] [-noasyncnet] [-r]\n\t"
"[-s src_addr] [-t transcom]", "[-s src_addr] [-t transcom] ",
# endif # endif
#else #else
"[-r] [-s src_addr] ", "[-r] [-s src_addr] [-u] ",
#endif #endif
#if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC) #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
"[-P policy]" "[-P policy] "
#endif #endif
#ifdef ENCRYPTION #ifdef ENCRYPTION
"[-y] [host-name [port]]" "[-y] [host-name [port]]"
@ -184,9 +184,6 @@ main(argc, argv)
#undef IPSECOPT #undef IPSECOPT
{ {
switch(ch) { switch(ch) {
case 'u':
family = AF_UNIX;
break;
case '4': case '4':
family = AF_INET; family = AF_INET;
break; break;
@ -325,6 +322,9 @@ main(argc, argv)
prompt); prompt);
#endif #endif
break; break;
case 'u':
family = AF_UNIX;
break;
case 'x': case 'x':
/* This is the default now, so ignore it */ /* This is the default now, so ignore it */
break; break;

View File

@ -108,8 +108,8 @@ usage()
"[-4] [-6] [-8] [-E] [-K] [-L] [-N] [-S tos] [-X atype] [-c] [-d]", "[-4] [-6] [-8] [-E] [-K] [-L] [-N] [-S tos] [-X atype] [-c] [-d]",
"\n\t[-e char] [-k realm] [-l user] [-f/-F] [-n tracefile] ", "\n\t[-e char] [-k realm] [-l user] [-f/-F] [-n tracefile] ",
#else #else
"[-4] [-6] [-8] [-E] [-L] [-N] [-S tos] [-c] [-d] [-e char] [-l user]", "[-4] [-6] [-8] [-E] [-L] [-N] [-S tos] [-c] [-d]",
"\n\t[-n tracefile] ", "\n\t[-e char] [-l user] [-n tracefile] ",
#endif #endif
#if defined(TN3270) && defined(unix) #if defined(TN3270) && defined(unix)
# ifdef AUTHENTICATION # ifdef AUTHENTICATION
@ -117,13 +117,13 @@ usage()
"[-noasyncnet] [-r] [-s src_addr] [-t transcom] ", "[-noasyncnet] [-r] [-s src_addr] [-t transcom] ",
# else # else
"[-noasynch] [-noasynctty] [-noasyncnet] [-r]\n\t" "[-noasynch] [-noasynctty] [-noasyncnet] [-r]\n\t"
"[-s src_addr] [-t transcom]", "[-s src_addr] [-t transcom] ",
# endif # endif
#else #else
"[-r] [-s src_addr] ", "[-r] [-s src_addr] [-u] ",
#endif #endif
#if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC) #if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
"[-P policy]" "[-P policy] "
#endif #endif
#ifdef ENCRYPTION #ifdef ENCRYPTION
"[-y] [host-name [port]]" "[-y] [host-name [port]]"
@ -184,9 +184,6 @@ main(argc, argv)
#undef IPSECOPT #undef IPSECOPT
{ {
switch(ch) { switch(ch) {
case 'u':
family = AF_UNIX;
break;
case '4': case '4':
family = AF_INET; family = AF_INET;
break; break;
@ -325,6 +322,9 @@ main(argc, argv)
prompt); prompt);
#endif #endif
break; break;
case 'u':
family = AF_UNIX;
break;
case 'x': case 'x':
/* This is the default now, so ignore it */ /* This is the default now, so ignore it */
break; break;