]> granicus.if.org Git - cronie/commitdiff
Part with_selinux now include even the testing of linux context.
authormmaslano <mmaslano@redhat.com>
Fri, 17 Aug 2007 13:18:33 +0000 (15:18 +0200)
committermmaslano <mmaslano@redhat.com>
Fri, 24 Aug 2007 13:06:00 +0000 (15:06 +0200)
security.c

index 3fdacc5779e7171093038a99b7f63a5294ec6d67..4115680bc8b5ba74014f9e369a70a662110d6035 100644 (file)
@@ -78,17 +78,15 @@ int cron_set_job_security_context( entry *e, user *u, char ***jobenv )
        return -1;
     }  
 
+#if WITH_SELINUX
     if ( cron_change_selinux_context( u, scontext, file_context ) != 0 )
     {
         syslog(LOG_INFO,"CRON (%s) ERROR: failed to change SELinux context", 
               e->pwd->pw_name);
-#if WITH_SELINUX
        if ( file_context )
                freecon(file_context);
-#endif
        return -1;
     }
-#if WITH_SELINUX
     if ( file_context )
        freecon(file_context);
 #endif