Summary: | a wrong date is shown in the manpage | ||
---|---|---|---|
Product: | Sisyphus | Reporter: | Ivan Zakharyaschev <imz> |
Component: | apt-repo | Assignee: | Andrey Cherepanov <cas> |
Status: | CLOSED FIXED | QA Contact: | qa-sisyphus |
Severity: | minor | ||
Priority: | P3 | CC: | cas |
Version: | unstable | ||
Hardware: | all | ||
OS: | Linux |
Description
Ivan Zakharyaschev
2015-11-29 16:07:21 MSK
However, in the source of the manpage, /usr/share/man/man8/idmapd.8.gz (from nfs-clients-1.2.8-alt1) has a similar expression for the date: .Dd February 3, 2003 .Dt RPC.IDMAPD 8 .Os .Sh NAME .Nm rpc.idmapd .Nd NFSv4 ID <-> Name Mapper .Sh SYNOPSIS and the date is printed correctly (unlike in the case of apt-repo): $ man idmapd | tail mdoc warning: Empty input line #98 /etc/idmapd.conf SEE ALSO idmapd.conf(5) AUTHORS The rpc.idmapd software has been developed by Marius Aamodt Eriksen ⟨marius@citi.umich.edu⟩. BSD February 3, 2003 BSD The fix was actually a simple one: ---------------------------------- apt-repo.8 ---------------------------------- index 39fb4af..16f637f 100644 @@ -8,7 +8,7 @@ .\" version 3 or later. .\" .Os Linux -.Dd "November 06, 2013" +.Dd November 06, 2013 .ds volume-operating-system Linux .Dt apt\-repo 8 .\" Committed in apt-repo-1.2.1-alt1 |