]> granicus.if.org Git - cronie/commitdiff
Added missing #ifdef WITH_PAM.
authorTomas Janousek <tjanouse@redhat.com>
Mon, 27 Aug 2007 10:42:50 +0000 (12:42 +0200)
committerTomas Janousek <tomi@nomi.cz>
Mon, 27 Aug 2007 14:03:55 +0000 (16:03 +0200)
Signed-off-by: Tomas Janousek <tjanouse@redhat.com>
src/crontab.c

index 8a81cd81f554d7a5dff17e6ef05f88495b25c287..5b8aaf76b20f659324a89381bb02575666e8a7d7 100644 (file)
@@ -117,13 +117,16 @@ main(int argc, char *argv[]) {
                fprintf(stderr, "See crontab(1) for more information\n");
                log_it(RealUser, Pid, "AUTH", "crontab command not allowed");
                exit(ERROR_EXIT);
-       }       
+       }
+
+#if defined(WITH_PAM)
        if (cron_start_pam(pw) != PAM_SUCCESS) {
                fprintf(stderr,
                        "You (%s) are not allowed to access to (%s) because of pam configuration.\n",
                        User, ProgramName);
                exit(ERROR_EXIT);
        };
+#endif
 
        exitstatus = OK_EXIT;
        switch (Option) {