]> granicus.if.org Git - fcron/commitdiff
runas option added
authorthib <thib>
Sun, 25 Jun 2000 20:07:48 +0000 (20:07 +0000)
committerthib <thib>
Sun, 25 Jun 2000 20:07:48 +0000 (20:07 +0000)
option.h

index 110e74fdb2782585d6e8356f97b6bdbd6554bb53..3dbd618f1f7a95e950528a268fb8a88b24a84cc1 100644 (file)
--- a/option.h
+++ b/option.h
@@ -21,7 +21,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: option.h,v 1.5 2000-06-22 12:35:03 thib Exp $ */
+ /* $Id: option.h,v 1.6 2000-06-25 20:07:48 thib Exp $ */
 
 /* read and set options of a line */
 
@@ -40,6 +40,7 @@
   6      is this job run serially only once (for bootrun) ?
   7      does the output have to be mailed to user ?
   8      does the output (even if zero-length) must be mailed to user ?
+  9      does this line use option runas ?
 
 */
 
        (_bit_clear(opt, 8))
 
 
+/*
+  bit 9 : set to 1 : line uses option runas
+          set to 0 : line does not use option runas
+*/
+#define        is_runas(opt) \
+       (_bit_test(opt, 9))
+#define        set_runas(opt) \
+       (_bit_set(opt, 9))
+#define clear_runas(opt) \
+       (_bit_clear(opt, 9))
+
+
 #endif /* __OPTIONH__ */