last_patch64 from Vladimir N. Oleynik <dzo@simtreas.ru>
authorGlenn L McGrath <bug1@ihug.co.nz>
Sun, 10 Nov 2002 21:28:13 +0000 (21:28 -0000)
committerGlenn L McGrath <bug1@ihug.co.nz>
Sun, 10 Nov 2002 21:28:13 +0000 (21:28 -0000)
include/applets.h
miscutils/crontab.c

index 3173445..a9f93cc 100644 (file)
        APPLET(crond, crond_main, _BB_DIR_USR_SBIN, _BB_SUID_NEVER)
 #endif
 #ifdef CONFIG_CRONTAB
-       APPLET(crontab, crontab_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)
+       APPLET(crontab, crontab_main, _BB_DIR_USR_BIN, _BB_SUID_ALWAYS)
 #endif
 #ifdef CONFIG_CUT
        APPLET(cut, cut_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)
index 4263d48..5bd7db6 100644 (file)
@@ -204,14 +204,14 @@ crontab_main(int ac, char **av)
            int n;
 
            snprintf(path, sizeof(path), "%s.new", pas->pw_name);
-           if ((fd = open(path, O_CREAT|O_TRUNC|O_EXCL|O_APPEND|O_WRONLY, 0600)) >= 0) {
+           if ((fd = open(path, O_CREAT|O_TRUNC|O_APPEND|O_WRONLY, 0600)) >= 0) {
                while ((n = read(repFd, buf, sizeof(buf))) > 0) {
                    write(fd, buf, n);
                }
                close(fd);
                rename(path, pas->pw_name);
            } else {
-               error_msg("unable to create %s/%s", CDir, buf);
+               error_msg("unable to create %s/%s", CDir, path);
            }
            close(repFd);
        }