From 3af4ffff5aa805d55b65db3901013c20ae752dee Mon Sep 17 00:00:00 2001 From: Chan-yeol Park Date: Wed, 22 Feb 2012 23:15:26 +0900 Subject: [PATCH] Remove leftover code of main_opts operation --- src/hcid.h | 3 --- src/main.c | 3 --- 2 files changed, 6 deletions(-) diff --git a/src/hcid.h b/src/hcid.h index 1987b7d18..e2eaf86cd 100644 --- a/src/hcid.h +++ b/src/hcid.h @@ -46,10 +46,7 @@ struct main_opts { }; 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 74ec3fac3..60a081625 100644 --- a/src/main.c +++ b/src/main.c @@ -107,7 +107,6 @@ static void parse_config(GKeyFile *config) } else { DBG("discovto=%d", val); main_opts.discovto = val; - main_opts.flags |= 1 << HCID_SET_DISCOVTO; } val = g_key_file_get_integer(config, "General", @@ -148,7 +147,6 @@ static void parse_config(GKeyFile *config) 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); } @@ -159,7 +157,6 @@ static void parse_config(GKeyFile *config) } else { DBG("class=%s", str); main_opts.class = strtol(str, NULL, 16); - main_opts.flags |= 1 << HCID_SET_CLASS; g_free(str); } -- 2.47.3