Size pointer for sudo_parseln() should be size_t not ssize_t.

This was already correct for the nsswitch.conf case.
This commit is contained in:
Todd C. Miller
2014-01-24 09:39:11 -07:00
parent 1a42e5f63d
commit 7e88cc27bf

View File

@@ -137,7 +137,7 @@ sudo_read_nss(void)
{
FILE *fp;
char *cp, *ep, *line = NULL;
ssize_t linesize = 0;
size_t linesize = 0;
#ifdef HAVE_SSSD
bool saw_sss = false;
#endif