/* careful: we're after vfork! */
change_identity(pas); /* - initgroups, setgid, setuid */
if (chdir(pas->pw_dir) < 0) {
- crondlog(WARN9 "can't chdir(%s)", pas->pw_dir);
+ crondlog(WARN9 "chdir(%s)", pas->pw_dir);
if (chdir(TMPDIR) < 0) {
- crondlog(DIE9 "can't chdir(%s)", TMPDIR); /* exits */
+ crondlog(DIE9 "chdir(%s)", TMPDIR); /* exits */
}
}
}
*/
unlink(CRONUPDATE);
if (chdir(CDir) < 0) {
- crondlog(DIE9 "can't chdir(%s)", CDir);
+ crondlog(DIE9 "chdir(%s)", CDir);
}
{
DIR *dir = opendir(".");
struct dirent *den;
if (!dir)
- crondlog(DIE9 "can't chdir(%s)", "."); /* exits */
+ crondlog(DIE9 "chdir(%s)", "."); /* exits */
while ((den = readdir(dir)) != NULL) {
if (strchr(den->d_name, '.') != NULL) {
continue;
if (script != url) { /* paranoia */
*script = '\0';
if (chdir(url + 1) != 0) {
- bb_perror_msg("chdir %s", url + 1);
+ bb_perror_msg("chdir(%s)", url + 1);
goto error_execing_cgi;
}
// not needed: *script = '/';