Check the type by special function for conditions 21/237221/1
authorKichan Kwon <k_c.kwon@samsung.com>
Tue, 16 Jun 2020 04:51:02 +0000 (13:51 +0900)
committerKichan Kwon <k_c.kwon@samsung.com>
Fri, 26 Jun 2020 05:25:27 +0000 (14:25 +0900)
- In current, only tizenid use it

Change-Id: I3c985a7d848f40fcacbfd5c5846c7dd082478188
Signed-off-by: Kichan Kwon <k_c.kwon@samsung.com>
src/system_info.c

index ba1541e60c0e4b731a30b9d0a8378257104f025d..f7b98018ee1fa9e3301c1ee257419f3eb57f7014 100644 (file)
@@ -161,7 +161,10 @@ static int system_info_get_type(enum tag_type tag, const char *key,
                }
        }
 
-       return SYSTEM_INFO_ERROR_INVALID_PARAMETER;
+       if (tag == TAG_TYPE_PLATFORM)
+               return system_info_get_type_file(key, type);
+       else
+               return SYSTEM_INFO_ERROR_INVALID_PARAMETER;
 }
 
 static int system_info_get_bool(enum tag_type tag, const char *key, bool *value)