Fix typo 27/70027/1 accepted/tizen/common/20160519.191327 accepted/tizen/ivi/20160519.085125 accepted/tizen/mobile/20160519.085058 accepted/tizen/tv/20160519.085040 accepted/tizen/wearable/20160519.085020 submit/tizen/20160519.011519
authorMinje Ahn <minje.ahn@samsung.com>
Wed, 18 May 2016 01:32:03 +0000 (10:32 +0900)
committerMinje Ahn <minje.ahn@samsung.com>
Wed, 18 May 2016 01:32:03 +0000 (10:32 +0900)
Change-Id: I73bb48a5da4589bd38ad862416ec369bb1526ed6
Signed-off-by: Minje Ahn <minje.ahn@samsung.com>
src/server/media-server-main.c

index ae7025e..ed3d5bf 100644 (file)
@@ -52,8 +52,8 @@ static void __ms_check_mediadb(void);
 static void __ms_add_signal_handler(void);
 static void __ms_remove_event_receiver(void);
 static void __ms_add_event_receiver(GIOChannel *channel);
-static void __ms_remove_requst_receiver(GIOChannel *channel);
-static void __ms_add_requst_receiver(GMainLoop *mainloop, GIOChannel **channel);
+static void __ms_remove_request_receiver(GIOChannel *channel);
+static void __ms_add_request_receiver(GMainLoop *mainloop, GIOChannel **channel);
 static int __ms_check_mmc_status(void);
 static int __ms_check_usb_status(void);
 
@@ -118,7 +118,7 @@ void _power_off_cb(ms_power_info_s *power_info, void* data)
                g_main_loop_quit(db_mainloop);
        }
 
-       __ms_remove_requst_receiver(channel);
+       __ms_remove_request_receiver(channel);
 
        __ms_remove_event_receiver();
 
@@ -259,7 +259,7 @@ int main(int argc, char **argv)
                return -1;
        }
 
-       __ms_add_requst_receiver(mainloop, &channel);
+       __ms_add_request_receiver(mainloop, &channel);
 
        /* recevie event from other modules */
        __ms_add_event_receiver(channel);
@@ -304,7 +304,7 @@ int main(int argc, char **argv)
        return 0;
 }
 
-static void __ms_add_requst_receiver(GMainLoop *mainloop, GIOChannel **channel)
+static void __ms_add_request_receiver(GMainLoop *mainloop, GIOChannel **channel)
 {
 
        int sockfd = -1;
@@ -336,7 +336,7 @@ static void __ms_add_requst_receiver(GMainLoop *mainloop, GIOChannel **channel)
        }
 }
 
-static void __ms_remove_requst_receiver(GIOChannel *channel)
+static void __ms_remove_request_receiver(GIOChannel *channel)
 {
        int fd = -1;