diff options
Diffstat (limited to 'libopkg')
-rw-r--r-- | libopkg/pkg_parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopkg/pkg_parse.c b/libopkg/pkg_parse.c index a51a3e1..d01dff5 100644 --- a/libopkg/pkg_parse.c +++ b/libopkg/pkg_parse.c @@ -319,7 +319,7 @@ pkg_parse_from_stream_nomalloc(pkg_t *pkg, FILE *fp, uint mask, fprintf(stderr, "%s: fgets: %s\n", __FUNCTION__, strerror(errno)); ret = -1; - } else if (strlen(*buf0) == buflen-1) { + } else if (strlen(*buf0) == buf0len-1) { fprintf(stderr, "%s: missing new line character" " at end of file!\n", __FUNCTION__); |