Fix port type to work normally 86/310186/2
authorMinje Ahn <minje.ahn@samsung.com>
Wed, 24 Apr 2024 00:45:48 +0000 (09:45 +0900)
committerMinje Ahn <minje.ahn@samsung.com>
Wed, 24 Apr 2024 00:50:23 +0000 (09:50 +0900)
ms_ipc_request_recovery() will be deleted after TV media table is integrated.
Behavior is guaranteed until deleted.

Change-Id: I7a8726eb1216cad3cce4e485655274ec928d5a9f
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
lib/media-util-ipc.c

index e079738..4d79d10 100644 (file)
@@ -204,7 +204,7 @@ int ms_ipc_request_recovery(uid_t uid)
 
        /*Set server Address*/
        serv_addr.sun_family = AF_UNIX;
-       ret = ms_user_make_ipc_path(serv_addr.sun_path, MS_DB_SOCK_PATH, sizeof(serv_addr.sun_path));
+       ret = ms_user_make_ipc_path(serv_addr.sun_path, MS_SCAN_SOCK_PATH, sizeof(serv_addr.sun_path));
        if (ret != MS_MEDIA_ERR_NONE) {
                close(sockfd);
                return ret;