Skip to content

Commit

Permalink
client: correct skip-origin handling for ifup
Browse files Browse the repository at this point in the history
  • Loading branch information
wipawel committed Oct 22, 2013
1 parent a6a0d8f commit 6ef60ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fsm.c
Expand Up @@ -1541,7 +1541,7 @@ ni_fsm_get_matching_workers(ni_fsm_t *fsm, ni_ifmatcher_t *match, ni_ifworker_ar

if ((dev = w->device) == 0
|| dev->client_info == NULL
|| !ni_string_eq(dev->client_info->config_origin, match->skip_origin))
|| !ni_string_startswith(dev->client_info->config_origin, match->skip_origin))
continue;
}

Expand Down

0 comments on commit 6ef60ca

Please sign in to comment.