Don't rely on NULL being a pointer, add a cast before passing it to a variadic

function.
This commit is contained in:
Stefan Farfeleder 2004-10-03 14:40:27 +00:00
parent 482d099c50
commit 2475565a7a
1 changed files with 2 additions and 2 deletions

View File

@ -148,7 +148,7 @@ pw_update(struct passwd * pwd, char const * user, int mode)
* Note: -C is only available in FreeBSD 2.2 and above
*/
#ifdef HAVE_PWDB_C
if (pwdb("-C", NULL) == 0) { /* Check only */
if (pwdb("-C", (char *)NULL) == 0) { /* Check only */
#else
{ /* No -C */
#endif
@ -185,7 +185,7 @@ pw_update(struct passwd * pwd, char const * user, int mode)
rc = pwdb(NULL);
#ifdef HAVE_PWDB_U
else
rc = pwdb("-u", user, NULL);
rc = pwdb("-u", user, (char *)NULL);
#endif
}
}