summaryrefslogtreecommitdiffstats
path: root/libexec
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>2001-07-09 09:24:06 +0000
committerbrian <brian@FreeBSD.org>2001-07-09 09:24:06 +0000
commit8636b161b333b18525b6f5ffc5139079c29c0d63 (patch)
treea109115514a8774e981280efca775db8a410df5b /libexec
parentef44874abb9460f2956eba8e3233154af304f5b1 (diff)
downloadFreeBSD-src-8636b161b333b18525b6f5ffc5139079c29c0d63.zip
FreeBSD-src-8636b161b333b18525b6f5ffc5139079c29c0d63.tar.gz
Fix the type of the NULL arg to execl()
Idea from: Theo de Raadt <deraadt@openbsd.org>
Diffstat (limited to 'libexec')
-rw-r--r--libexec/pppoed/pppoed.c2
-rw-r--r--libexec/rexecd/rexecd.c2
-rw-r--r--libexec/rshd/rshd.c2
-rw-r--r--libexec/telnetd/sys_term.c2
-rw-r--r--libexec/uucpd/uucpd.c2
5 files changed, 5 insertions, 5 deletions
diff --git a/libexec/pppoed/pppoed.c b/libexec/pppoed/pppoed.c
index fa55252..bb46984 100644
--- a/libexec/pppoed/pppoed.c
+++ b/libexec/pppoed/pppoed.c
@@ -410,7 +410,7 @@ Spawn(const char *prog, const char *acname, const char *provider,
setsid();
syslog(LOG_INFO, "Executing: %s", exec);
- execlp(_PATH_BSHELL, _PATH_BSHELL, "-c", exec, NULL);
+ execlp(_PATH_BSHELL, _PATH_BSHELL, "-c", exec, (char *)NULL);
syslog(LOG_ERR, "execlp failed: %m");
_exit(EX_OSFILE);
diff --git a/libexec/rexecd/rexecd.c b/libexec/rexecd/rexecd.c
index 00b51fd..a12072c 100644
--- a/libexec/rexecd/rexecd.c
+++ b/libexec/rexecd/rexecd.c
@@ -297,7 +297,7 @@ doit(f, fromp)
error("No remote directory.\n");
exit(1);
}
- execl(pwd->pw_shell, cp, "-c", cmdbuf, 0);
+ execl(pwd->pw_shell, cp, "-c", cmdbuf, (char *)0);
err(1, "%s", pwd->pw_shell);
}
diff --git a/libexec/rshd/rshd.c b/libexec/rshd/rshd.c
index 6353d35..5cef085 100644
--- a/libexec/rshd/rshd.c
+++ b/libexec/rshd/rshd.c
@@ -707,7 +707,7 @@ doit(fromp)
syslog(LOG_INFO|LOG_AUTH, "%s@%s as %s: cmd='%.80s'",
remuser, fromhost, locuser, cmdbuf);
}
- execl(pwd->pw_shell, cp, "-c", cmdbuf, 0);
+ execl(pwd->pw_shell, cp, "-c", cmdbuf, (char *)0);
perror(pwd->pw_shell);
exit(1);
}
diff --git a/libexec/telnetd/sys_term.c b/libexec/telnetd/sys_term.c
index f5163cb..3102e0f 100644
--- a/libexec/telnetd/sys_term.c
+++ b/libexec/telnetd/sys_term.c
@@ -2080,7 +2080,7 @@ cleantmpdir(jid, tpath, user)
tpath);
break;
case 0:
- execl(CLEANTMPCMD, CLEANTMPCMD, user, tpath, 0);
+ execl(CLEANTMPCMD, CLEANTMPCMD, user, tpath, (char *)0);
syslog(LOG_ERR, "TMPDIR cleanup(%s): execl(%s) failed: %m",
tpath, CLEANTMPCMD);
exit(1);
diff --git a/libexec/uucpd/uucpd.c b/libexec/uucpd/uucpd.c
index e914189..7ca2b67 100644
--- a/libexec/uucpd/uucpd.c
+++ b/libexec/uucpd/uucpd.c
@@ -191,7 +191,7 @@ void doit(struct sockaddr *sinp)
initgroups(pw->pw_name, pw->pw_gid);
chdir(pw->pw_dir);
setuid(pw->pw_uid);
- execl(pw->pw_shell, "uucico", NULL);
+ execl(pw->pw_shell, "uucico", (char *)NULL);
syslog(LOG_ERR, "execl: %m");
_exit(1);
}
OpenPOWER on IntegriCloud