1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-10-19 02:29:40 +00:00

Cast the NULL to a pointer type for 64 bit architectures

Submitted by:	harti
MFC after:	4 days
This commit is contained in:
Gregory Neil Shapiro 2003-10-31 22:12:09 +00:00
parent b5004ff560
commit 3fdb39034f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=121826

View File

@ -9,6 +9,7 @@
* forth in the LICENSE file which can be found at the top level of
* the sendmail distribution.
*
* $FreeBSD$
*/
#include <sm/gen.h>
@ -423,7 +424,8 @@ main(argc, argv)
#ifdef DEBUG
(void) sm_io_fprintf(smioout, SM_TIME_DEFAULT, "%s\n", newcmdbuf);
#endif /* DEBUG */
(void) execle("/bin/sh", "/bin/sh", "-c", newcmdbuf, NULL, newenv);
(void) execle("/bin/sh", "/bin/sh", "-c", newcmdbuf,
(char *)NULL, newenv);
save_errno = errno;
#ifndef DEBUG
syslog(LOG_CRIT, "Cannot exec /bin/sh: %s", sm_errstring(errno));