summaryrefslogtreecommitdiffstats
path: root/kiss
diff options
context:
space:
mode:
authorThomas Osterried <thomas@osterried.de>2009-01-20 18:31:25 +0000
committerThomas Osterried <thomas@osterried.de>2009-01-20 18:31:25 +0000
commitf113dce38feb52031d2fdda40efa80a729eaa4aa (patch)
treed5c1d891f537f619c9544ba3a0e695e2ec0256e1 /kiss
parent6ef96412fc19133494ed0c9f0bf42a722050e07f (diff)
Unix98 support.
Thanks to dk2crn.
Diffstat (limited to 'kiss')
-rw-r--r--kiss/mkiss.88
-rw-r--r--kiss/mkiss.c2
2 files changed, 5 insertions, 5 deletions
diff --git a/kiss/mkiss.8 b/kiss/mkiss.8
index 0178ede..82b0fa5 100644
--- a/kiss/mkiss.8
+++ b/kiss/mkiss.8
@@ -2,7 +2,7 @@
.SH NAME
mkiss \- Attach a multi KISS interface
.SH SYNOPSIS
-.B mkiss [-c] [-f] [-h] [-l] [-s speed] [-p pollrate] [-v] ttyinterface [ -x <n> | pty ..]
+.B mkiss [-c] [-f] [-h] [-l] [-s speed] [-p pollrate] [-v] [-x n_ptmx] ttyinterface pty ..
.SH DESCRIPTION
.LP
.B Mkiss
@@ -58,11 +58,11 @@ Enables polling. Polled mode is used by G8BPQ KISS roms to prevent
contention on systems where multiple TNCs share the same serial line.
Pollrate is interval between polls (in 100ms units).
.TP 10
-.BI "\-x number"
-This option is for Unix98 PTYs. It allocates "number" ptys; their names are written to stdout.
-.TP 10
.BI \-v
Display the version.
+.TP 10
+.BI "\-x number"
+This option is for Unix98 PTYs. It allocates "number" ptys; their names are written to stdout. When -x is used, the pty arguments are optional.
.SH "SEE ALSO"
.BR kissattach (8),
.BR ifconfig (8),
diff --git a/kiss/mkiss.c b/kiss/mkiss.c
index 169de49..30e258c 100644
--- a/kiss/mkiss.c
+++ b/kiss/mkiss.c
@@ -82,7 +82,7 @@ static int crc_errors = 0;
static int invalid_ports = 0;
static int return_polls = 0;
-static char *usage_string = "usage: mkiss [-p interval] [-c] [-f] [-h] [-l] [-s speed] [-v] ttyinterface [-x <num_ptmx_devices> | pty ..]\n";
+static char *usage_string = "usage: mkiss [-p interval] [-c] [-f] [-h] [-l] [-s speed] [-v] [-x <num_ptmx_devices>] ttyinterface pty ..\n";
static int dump_report = FALSE;