diff options
author | Miles Bader <miles@gnu.org> | 1996-07-20 01:10:25 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-07-20 01:10:25 +0000 |
commit | 9f72a54c66399d66119870e1dc1b85a6c1e22b4f (patch) | |
tree | 2c1cbc34f63f51a1a95ea6da032cbb3f489f5d5b /utils/settrans.c | |
parent | e8b08b2719b30c513da3ab7f9e76a6d1c420ea70 (diff) |
(options): Rearrange slightly.
Diffstat (limited to 'utils/settrans.c')
-rw-r--r-- | utils/settrans.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/settrans.c b/utils/settrans.c index 9da2d07a..ff264a5b 100644 --- a/utils/settrans.c +++ b/utils/settrans.c @@ -41,18 +41,18 @@ static struct argp_option options[] = { {"active", 'a', 0, 0, "Set NODE's active translator", 1}, {"passive", 'p', 0, 0, "Set NODE's passive translator"}, - {"keep-active", 'k', 0, 0, "Keep any currently running active translator" - " when setting the passive translator"}, {"create", 'c', 0, 0, "Create NODE if it doesn't exist"}, {"dereference", 'L', 0, 0, "If a translator exists, put the new one on top"}, - {"goaway", 'g', 0, 0, "Make any existing active translator go away" - " when setting the passive translator"}, {"pause", 'P', 0, 0, "When starting an active translator, prompt and" " wait for a newline on stdin before completing the startup handshake"}, {"timeout", 't',"SEC",0, "Timeout for translator startup, in seconds" " (default " STRINGIFY (DEFAULT_TIMEOUT) "); 0 means no timeout"}, {"exclusive", 'x', 0, 0, "Only set the translator if there is none already"}, + {0,0,0,0, "When setting the passive translator, if there's an active translator:"}, + {"goaway", 'g', 0, 0, "Make the active translator go away"}, + {"keep-active", 'k', 0, 0, "Leave the existing active translator running"}, + {0,0,0,0, "When an active translator is told to go away:", 2}, {"recursive", 'R', 0, 0, "Shutdown its children too"}, {"force", 'f', 0, 0, "If it doesn't want to die, force it"}, |