Fix bad assignment due to wrong variable

Signed-off-by: Lon Hohberger <lhh@redhat.com>
This commit is contained in:
Lon Hohberger 2009-09-01 15:23:53 -04:00
parent bcd87ec4fc
commit c09c3e4551

View File

@ -360,7 +360,7 @@ mcast_config(config_object_t *config, mcast_options *args)
if (!strcasecmp(value, "uuid")) {
args->flags |= RF_UUID;
} else if (!strcasecmp(value, "name")) {
args->family &= ~RF_UUID;
args->flags &= ~RF_UUID;
} else {
dbg_printf(1, "Unsupported name_mode: %s\n", value);
++errors;