Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1113 → Rev 1118

/FreeBSD/mac_settime/trunk/src/mac_settime.c
252,7 → 252,7
if (strlen(token) == 0)
continue;
 
switch(state) {
switch (state) {
case STATE_BEFORE_ACTION:
not = 0;
if (strcmp(token, ALLOW_STRING) == 0) {
305,7 → 305,7
r->jail_type = RULE_NOJAIL;
r->jail_not = not;
state = STATE_END;
} else if(strcmp(token, JAIL_STRING) == 0) {
} else if (strcmp(token, JAIL_STRING) == 0) {
r->jail_type = RULE_JAIL;
r->jail_not = not;
state = STATE_AFTER_JAIL;
459,7 → 459,7
match_id = 0;
}
 
switch(r->jail_type) {
switch (r->jail_type) {
case RULE_NONE:
match_jail = 1;
break;