diff options
author | wosch <wosch@FreeBSD.org> | 1997-09-15 19:37:23 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1997-09-15 19:37:23 +0000 |
commit | bfe383d033baf0a682e126a4159a4c8beb702cf4 (patch) | |
tree | 9813c629dbd08ac9ffa673f2c35be65ba91e76d1 /lib | |
parent | b599049058445d77a472461c2c80eb1b333aebcf (diff) | |
download | FreeBSD-src-bfe383d033baf0a682e126a4159a4c8beb702cf4.zip FreeBSD-src-bfe383d033baf0a682e126a4159a4c8beb702cf4.tar.gz |
Fix yet a minor stylistic nit from Bruce.
(`cvs diff -ib' print one new char ;-).
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/gen/getpwent.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/gen/getpwent.c b/lib/libc/gen/getpwent.c index c753232..9a19a15 100644 --- a/lib/libc/gen/getpwent.c +++ b/lib/libc/gen/getpwent.c @@ -294,12 +294,12 @@ __hashpw(key) return(0); p = (char *)data.data; - /* increase buffer size for long lines if necessary */ + /* Increase buffer size for long lines if necessary. */ if (data.size > max) { max = data.size + 1024; - if (!(line = realloc(line, max))) - return(0); - } + if (!(line = realloc(line, max))) + return(0); + } /* THIS CODE MUST MATCH THAT IN pwd_mkdb. */ t = line; |