From eea3231ee1fd4c6cab0d33a5329e06e65acb02c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Thu, 5 Apr 2012 14:38:07 +0000 Subject: [PATCH] A single space before the section title is OK. git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@569 185d5e19-27fe-0310-9dcf-9bff6b9f3609 --- lib/openpam_readlinev.c | 2 +- lib/openpam_readword.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/openpam_readlinev.c b/lib/openpam_readlinev.c index 5099e34..3d20d4e 100644 --- a/lib/openpam_readlinev.c +++ b/lib/openpam_readlinev.c @@ -117,7 +117,7 @@ openpam_readlinev(FILE *f, int *lineno, int *lenp) * If =lenp is not =NULL, the number of words on the line is stored in the * variable to which it points. * - *RETURN VALUES + * RETURN VALUES * * If successful, the =openpam_readlinev function returns a pointer to a * dynamically allocated array of pointers to individual dynamically diff --git a/lib/openpam_readword.c b/lib/openpam_readword.c index a64189d..f81506a 100644 --- a/lib/openpam_readword.c +++ b/lib/openpam_readword.c @@ -176,7 +176,7 @@ openpam_readword(FILE *f, int *lineno, size_t *lenp) * If =lenp is not =NULL, the length of the word (after quotes and * backslashes have been removed) is stored in the variable it points to. * - *RETURN VALUES + * RETURN VALUES * * If successful, the =openpam_readword function returns a pointer to a * dynamically allocated NUL-terminated string containing the first word @@ -193,7 +193,7 @@ openpam_readword(FILE *f, int *lineno, size_t *lenp) * backslash escape is in effect, it sets :errno to =EINVAL and returns * =NULL. * - *IMPLEMENTATION NOTES + * IMPLEMENTATION NOTES * * The parsing rules are intended to be equivalent to the normal POSIX * shell quoting rules.