Displaying 1 result from an estimated 1 matches for "running_mac".
Did you mean:
running_loc
2005 May 12
0
[PATCH] Trusted IRIX Support
...else
+ fatal("Unable to convert %s into a capability
set!",
+ cap_string);
+ }
+ }
+
+ #endif /* WITH_IRIX_CAP */
+
+
+ #ifdef WITH_IRIX_MAC
+ void
+ irix_set_mac(const char * mac_string)
+ {
+ mac_t running_mac;
+ if(mac_string == NULL)
+ fatal("irix_set_mac received NULL for input!");
+ if(sysconf(_SC_MAC) != 0) {
+ debug("irix_set_mac: setting mac label to %s",mac_string);
+ running_mac=mac_from_text(mac_string);
+...