From f7b5d10863b6d9e083dc15c821db8d5e1d2f3f89 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Tue, 30 Dec 2008 01:19:07 +0000 Subject: [PATCH] Manpages: Fix substitutions. Organization: Straylight/Edgeware From: Mark Wooding The manfix utility in fc916a0942e6ef8f63aefb96119d0e4fd7c7efbb botched all the \*(/x splats, with the result that they were left them in the final output. --- client/tripectl.1.in | 4 ++-- maint-utils/manfix | 4 ++-- mon/tripemon.1.in | 4 ++-- server/tripe.8.in | 6 +++--- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/client/tripectl.1.in b/client/tripectl.1.in index 57061ae1..0724b8a6 100644 --- a/client/tripectl.1.in +++ b/client/tripectl.1.in @@ -110,7 +110,7 @@ directory. The default directory, if this option is not specified, is taken from the environment variable .BR TRIPEDIR ; if that's not defined either, a default default of -.B "*(/c" +.B "\*(/c" is used. .TP .BI "\-a, \-\-admin-socket=" socket @@ -123,7 +123,7 @@ The default socket, if this option is not specified, is taken from the environment variable .BR TRIPESOCK ; if that's not defined either, a default default of -.B "*(/s/tripesock" +.B "\*(/s/tripesock" is used. .TP .BI "\-P, \-\-pidfile=" pidfile diff --git a/maint-utils/manfix b/maint-utils/manfix index 5d6550b8..fb36848a 100755 --- a/maint-utils/manfix +++ b/maint-utils/manfix @@ -45,5 +45,5 @@ $a\ .\ .\\"----- That's all, folks -------------------------------------------------- -s:@configdir@:\*(/c:g -s:@socketdir@:\*(/s:g +s:@configdir@:\\*(/c:g +s:@socketdir@:\\*(/s:g diff --git a/mon/tripemon.1.in b/mon/tripemon.1.in index 9126efb2..4a795e04 100644 --- a/mon/tripemon.1.in +++ b/mon/tripemon.1.in @@ -78,7 +78,7 @@ directory. The default directory, if this option is not specified, is taken from the environment variable .BR TRIPEDIR ; if that's not defined either, a default default of -.B *(/c +.B \*(/c is used. .TP .BI "\-a, \-\-admin-socket=" socket @@ -87,7 +87,7 @@ Connect to the named administration The default socket is given by the environment variable .BR TRIPESOCK ; if that's not defined either, a default default of -.B *(/s/tripesock +.B \*(/s/tripesock is used. . diff --git a/server/tripe.8.in b/server/tripe.8.in index 9c6aea80..dab23e3b 100644 --- a/server/tripe.8.in +++ b/server/tripe.8.in @@ -106,7 +106,7 @@ will initialize by following these steps: It sets the directory named by the .B TRIPEDIR environment variable (or -.B "*(/c" +.B "\*(/c" if the variable is unset) as the current directory. .hP 2. It acquires a UDP socket with an arbitrary kernel-selected port number. @@ -187,7 +187,7 @@ the current directory. The default directory to change to is given by the environment variable .BR TRIPEDIR ; if that's not specified, a default default of -.B "*(/c" +.B "\*(/c" is used. Give a current directory of .B . if you don't want it to change directory at all. @@ -249,7 +249,7 @@ The default socket, if this option isn't specified, is given by the environment variable .BR TRIPESOCK ; if that's not set either, then a default default of -.B "*(/s/tripesock" +.B "\*(/s/tripesock" is used instead. .TP .BI "\-T, \-\-trace=" trace-opts -- [mdw]