diff --git a/src/hcid.h b/src/hcid.h
index 1987b7d..e2eaf86 100644
--- a/src/hcid.h
+++ b/src/hcid.h
};
enum {
- HCID_SET_NAME,
- HCID_SET_CLASS,
HCID_SET_PAGETO,
- HCID_SET_DISCOVTO,
};
extern struct main_opts main_opts;
diff --git a/src/main.c b/src/main.c
index 74ec3fa..60a0816 100644
--- a/src/main.c
+++ b/src/main.c
} else {
DBG("discovto=%d", val);
main_opts.discovto = val;
- main_opts.flags |= 1 << HCID_SET_DISCOVTO;
}
val = g_key_file_get_integer(config, "General",
DBG("name=%s", str);
g_free(main_opts.name);
main_opts.name = g_strdup(str);
- main_opts.flags |= 1 << HCID_SET_NAME;
g_free(str);
}
} else {
DBG("class=%s", str);
main_opts.class = strtol(str, NULL, 16);
- main_opts.flags |= 1 << HCID_SET_CLASS;
g_free(str);
}