From: Nishant Chaprana Date: Wed, 9 Oct 2019 12:26:08 +0000 (+0530) Subject: Remove DEPRECATED connection_set_ethernet_cable_state_chaged_cb() call X-Git-Tag: accepted/tizen/5.5/unified/20191031.030104^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=13347da3d9298286696abdf8ddd0e8a8fc766b7a;p=platform%2Fcore%2Fapi%2Fconnection.git Remove DEPRECATED connection_set_ethernet_cable_state_chaged_cb() call connection_set_ethernet_cable_state_chaged_cb() is deprecated and will be removed from next release. Using connection_set_ethernet_cable_state_changed_cb() instead Change-Id: Iae867e17dd1feb2389877d16ce2aabf2afbdcd45 Signed-off-by: Nishant Chaprana --- diff --git a/test/connection_test.c b/test/connection_test.c index 80d4c96..5ea1d4e 100755 --- a/test/connection_test.c +++ b/test/connection_test.c @@ -1032,7 +1032,7 @@ int test_register_client(void) connection_set_type_changed_cb(connection, test_type_changed_callback, NULL); connection_set_ip_address_changed_cb(connection, test_ip_changed_callback, NULL); connection_set_proxy_address_changed_cb(connection, test_proxy_changed_callback, NULL); - connection_set_ethernet_cable_state_chaged_cb(connection, + connection_set_ethernet_cable_state_changed_cb(connection, test_get_ethernet_cable_state_callback, NULL); } else { printf("Client registration failed [%s]\n", test_print_error(err)); @@ -1088,7 +1088,7 @@ int test_register_client_cs(void) connection_set_type_changed_cb(connection, test_type_changed_callback, NULL); connection_set_ip_address_changed_cb(connection, test_ip_changed_callback, NULL); connection_set_proxy_address_changed_cb(connection, test_proxy_changed_callback, NULL); - connection_set_ethernet_cable_state_chaged_cb(connection, + connection_set_ethernet_cable_state_changed_cb(connection, test_get_ethernet_cable_state_callback, NULL); } else { printf("Client registration failed [%s]\n", test_print_error(err));