diff options
author | Daniel Wagner <daniel.wagner@bmw-carit.de> | 2011-12-22 11:23:29 +0100 |
---|---|---|
committer | Daniel Wagner <daniel.wagner@bmw-carit.de> | 2011-12-22 11:28:10 +0100 |
commit | 71b8faaad0e2dadcd177b02a85fc434f0d130183 (patch) | |
tree | 73a76a0ad8908fa8b66b3d39145a77617300a5a4 /src/storage.c | |
parent | c7fa40e99bf1bc6dd7c7c3ffe41ea7db35e8b6bf (diff) | |
download | connman-71b8faaad0e2dadcd177b02a85fc434f0d130183.tar.gz connman-71b8faaad0e2dadcd177b02a85fc434f0d130183.tar.bz2 connman-71b8faaad0e2dadcd177b02a85fc434f0d130183.zip |
storage: Remove useless comments
No additional information in the comments.
Diffstat (limited to 'src/storage.c')
-rw-r--r-- | src/storage.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/storage.c b/src/storage.c index 0f9c74df..7dcf2e3a 100644 --- a/src/storage.c +++ b/src/storage.c @@ -378,7 +378,6 @@ void __connman_storage_migrate() goto done; } - /* offline mode */ val = g_key_file_get_boolean(keyfile_def, "global", "OfflineMode", &error); if (error != NULL) { @@ -389,7 +388,6 @@ void __connman_storage_migrate() g_key_file_set_boolean(keyfile, "global", "OfflineMode", val); - /* wifi */ val = g_key_file_get_boolean(keyfile_def, "WiFi", "Enable", &error); if (error != NULL) { @@ -400,7 +398,6 @@ void __connman_storage_migrate() g_key_file_set_boolean(keyfile, "WiFi", "Enable", val); - /* bluetooth */ val = g_key_file_get_boolean(keyfile_def, "Bluetooth", "Enable", &error); if (error != NULL) { @@ -411,7 +408,6 @@ void __connman_storage_migrate() g_key_file_set_boolean(keyfile, "Bluetooth", "Enable", val); - /* wired */ val = g_key_file_get_boolean(keyfile_def, "Wired", "Enable", &error); if (error != NULL) { @@ -422,7 +418,6 @@ void __connman_storage_migrate() g_key_file_set_boolean(keyfile, "Wired", "Enable", val); - /* cellular */ val = g_key_file_get_boolean(keyfile_def, "Cellular", "Enable", &error); if (error != NULL) { @@ -433,7 +428,6 @@ void __connman_storage_migrate() g_key_file_set_boolean(keyfile, "Cellular", "Enable", val); - /* WiMAX */ val = g_key_file_get_boolean(keyfile_def, "WiMAX", "Enable", &error); if (error != NULL) { |