Bug 12589

Summary: inetd.8 has a typo (``'': should be ``:'')
Product: Documentation Reporter: horikawa <horikawa>
Component: Books & ArticlesAssignee: freebsd-doc (Nobody) <doc>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
file.diff none

Description horikawa 1999-07-10 19:40:01 UTC
	man 8 inetd shows:
[snip]
     The user entry should contain the user name of the user as whom the serv-
     er should run.  This allows for servers to be given less permission than
     root.  Optional group part separated by ``'': allows to specify group
     name different than default group for this user.  Optional login-class
     part separated by ``/'' allows to specify login class different than de-
     fault ``daemon'' login class.
[snip]

	``'': should be ``:''.

Fix: This is because ":" is a punctuation character, which is
	treated as special character in nroff.  To treat ":" as a
	normal character, ":" should be escaped with "\&", as
	following:
How-To-Repeat: 
	$ man 8 inetd
Comment 1 Brian Feldman freebsd_committer freebsd_triage 1999-07-11 09:33:12 UTC
State Changed
From-To: open->closed

I've applied the change. Thanks!