summaryrefslogtreecommitdiff
path: root/src/storage.c
diff options
context:
space:
mode:
authorJaehyun Kim <jeik01.kim@samsung.com>2021-01-25 06:15:21 +0000
committerGerrit Code Review <gerrit@review>2021-01-25 06:15:21 +0000
commit6d2cf90574c81cd30340116270e17af058703afb (patch)
treed9aed754a3add94019a93239281de03bba42af85 /src/storage.c
parent5bf80017321e03103f588306d2888d22f3f67ffa (diff)
parentc647a4b6f1132684c9d8b8ad71ec38d81147b278 (diff)
downloadconnman-6d2cf90574c81cd30340116270e17af058703afb.tar.gz
connman-6d2cf90574c81cd30340116270e17af058703afb.tar.bz2
connman-6d2cf90574c81cd30340116270e17af058703afb.zip
Merge "Imported Upstream connman version 1.38" into tizen
Diffstat (limited to 'src/storage.c')
-rwxr-xr-xsrc/storage.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/storage.c b/src/storage.c
index 277e5f53..9be60def 100755
--- a/src/storage.c
+++ b/src/storage.c
@@ -212,28 +212,6 @@ GKeyFile *__connman_storage_load_provider_config(const char *ident)
return keyfile;
}
-GKeyFile *__connman_storage_open_service(const char *service_id)
-{
- gchar *pathname;
- GKeyFile *keyfile = NULL;
-
- pathname = g_strdup_printf("%s/%s/%s", STORAGEDIR, service_id, SETTINGS);
- if (!pathname)
- return NULL;
-
- keyfile = storage_load(pathname);
- if (keyfile) {
- g_free(pathname);
- return keyfile;
- }
-
- g_free(pathname);
-
- keyfile = g_key_file_new();
-
- return keyfile;
-}
-
gchar **connman_storage_get_services(void)
{
struct dirent *d;