[Test app] fix wrong log message 72/184572/1 accepted/tizen/unified/20180723.102247 submit/tizen/20180720.042334
authorSeonah Moon <seonah1.moon@samsung.com>
Thu, 19 Jul 2018 02:25:51 +0000 (11:25 +0900)
committerSeonah Moon <seonah1.moon@samsung.com>
Thu, 19 Jul 2018 02:25:57 +0000 (11:25 +0900)
Change-Id: I76768611337606082fee7c18cd22bfb538dd03c1

test/softap_test.c

index 8ed7f4fd37d42125954f241a144764dfcd45254b..94909a8559ce317898db788f12c3c7ce8d93ee30 100755 (executable)
@@ -252,7 +252,7 @@ static void __register_cbs(void)
 
        ret = softap_set_client_connection_state_changed_cb(sa, __connection_state_changed_cb, NULL);
        if (ret != SOFTAP_ERROR_NONE)
-               printf("Fail to set visibility changed callback!!\n");
+               printf("Fail to set client connection state changed callback!!\n");
 
        return;
 }
@@ -279,7 +279,7 @@ static void __deregister_cbs(void)
 
        ret = softap_unset_client_connection_state_changed_cb(sa);
        if (ret != SOFTAP_ERROR_NONE)
-               printf("Fail to unset visibility changed callback!!\n");
+               printf("Fail to unset client connection state changed callback!!\n");
 
        return;
 }
@@ -377,7 +377,7 @@ static int test_softap_get_settings(void)
 
        ret = softap_get_mode(sa, &mode);
        if (ret != SOFTAP_ERROR_NONE)
-               printf("Failed to get channel\n");
+               printf("Failed to get mode\n");
 
        ret = softap_get_mac_address(sa, &mac_address);
        if (ret != SOFTAP_ERROR_NONE)