X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=resource%2Fcsdk%2Fconnectivity%2Fsrc%2Fip_adapter%2Fandroid%2Fcaifaddrs.c;h=a64cfd42f9442c34fbdd03676f85d8ab389b64f4;hb=3c093548382bb2542c87a67e6e5fa32552c29cb3;hp=72750e3e8618ceaf5bb98295760ab5d391c3e65d;hpb=edcfc3d2329da7b914771c0dcff5f42c9b74fd93;p=platform%2Fupstream%2Fiotivity.git diff --git a/resource/csdk/connectivity/src/ip_adapter/android/caifaddrs.c b/resource/csdk/connectivity/src/ip_adapter/android/caifaddrs.c index 72750e3..a64cfd4 100644 --- a/resource/csdk/connectivity/src/ip_adapter/android/caifaddrs.c +++ b/resource/csdk/connectivity/src/ip_adapter/android/caifaddrs.c @@ -1,22 +1,22 @@ -/****************************************************************** -* -* Copyright 2016 Samsung Electronics All Rights Reserved. -* -* -* -* Licensed under the Apache License, Version 2.0 (the "License"); -* you may not use this file except in compliance with the License. -* You may obtain a copy of the License at -* -* http://www.apache.org/licenses/LICENSE-2.0 -* -* Unless required by applicable law or agreed to in writing, software -* distributed under the License is distributed on an "AS IS" BASIS, -* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -* See the License for the specific language governing permissions and -* limitations under the License. -* -******************************************************************/ +/* ***************************************************************** + * + * Copyright 2016 Samsung Electronics All Rights Reserved. + * + * + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + ******************************************************************/ #include "caifaddrs.h" #include "oic_malloc.h" @@ -34,7 +34,7 @@ #include #include #include "logger.h" -#define TAG "OIC_CA_ifaddrs" +#define TAG "OIC_CA_IFADDRS" #define VERIFY_NON_NULL(arg) { if (!arg) {OIC_LOG(ERROR, TAG, #arg " is NULL"); goto exit;} } #define NETLINK_MESSAGE_LENGTH (4096) @@ -195,7 +195,6 @@ CAResult_t CAGetIfaddrsUsingNetlink(struct ifaddrs **ifap) goto exit; case RTM_NEWADDR: - OIC_LOG(DEBUG, TAG, "RTM_NEWADDR"); node = CAParsingAddr(recvMsg); state = CA_MEMORY_ALLOC_FAILED; VERIFY_NON_NULL(node);