diff options
author | des <des@FreeBSD.org> | 2007-04-07 13:36:53 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2007-04-07 13:36:53 +0000 |
commit | ea144ae9da6f54d800cd57d9f9292c0db5e08d80 (patch) | |
tree | 75b458ba5ca85bf52d02d3445c213f20a650bdf8 /contrib/openpam/lib | |
parent | a41c608b441e34c1782745057da1aa311554898d (diff) | |
download | FreeBSD-src-ea144ae9da6f54d800cd57d9f9292c0db5e08d80.zip FreeBSD-src-ea144ae9da6f54d800cd57d9f9292c0db5e08d80.tar.gz |
Merge from upstream:
------------------------------------------------------------------------
r380 | des | 2006-03-14 15:42:09 +0100 (Tue, 14 Mar 2006) | 1 line
Fix signedness mismatch, and use an explicit cast when calling ctype functions.
------------------------------------------------------------------------
Diffstat (limited to 'contrib/openpam/lib')
-rw-r--r-- | contrib/openpam/lib/openpam_readline.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/openpam/lib/openpam_readline.c b/contrib/openpam/lib/openpam_readline.c index 11dda5c..222ed76 100644 --- a/contrib/openpam/lib/openpam_readline.c +++ b/contrib/openpam/lib/openpam_readline.c @@ -31,7 +31,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $P4: //depot/projects/openpam/lib/openpam_readline.c#3 $ + * $Id: openpam_readline.c 380 2006-03-14 14:42:09Z des $ */ #include <ctype.h> @@ -52,7 +52,7 @@ char * openpam_readline(FILE *f, int *lineno, size_t *lenp) { - unsigned char *line; + char *line; size_t len, size; int ch; @@ -63,7 +63,7 @@ openpam_readline(FILE *f, int *lineno, size_t *lenp) #define line_putch(ch) do { \ if (len >= size - 1) { \ - unsigned char *tmp = realloc(line, size *= 2); \ + char *tmp = realloc(line, size *= 2); \ if (tmp == NULL) \ goto fail; \ line = tmp; \ @@ -83,7 +83,7 @@ openpam_readline(FILE *f, int *lineno, size_t *lenp) /* eof */ if (ch == EOF) { /* remove trailing whitespace */ - while (len > 0 && isspace(line[len - 1])) + while (len > 0 && isspace((int)line[len - 1])) --len; line[len] = '\0'; if (len == 0) @@ -96,7 +96,7 @@ openpam_readline(FILE *f, int *lineno, size_t *lenp) ++*lineno; /* remove trailing whitespace */ - while (len > 0 && isspace(line[len - 1])) + while (len > 0 && isspace((int)line[len - 1])) --len; line[len] = '\0'; /* skip blank lines */ |