Description: This patch uses to fix the issue in
test_get_user_string() function.
Due to this issue, inet_pton() function return the
error code zero.
Change-Id: I61c5a1aadd20d2afab34e70097ed7cc9f621f832
Signed-off-by: Maneesh Jain <maneesh.jain@samsung.com>
Name: capi-network-connection
Summary: Network Connection library in TIZEN C API
-Version: 0.1.3_20
+Version: 0.1.3_21
Release: 1
Group: System/Network
License: Apache-2.0
return false;
}
- if (rv >= 0)
- buf[rv] = '\0';
-
+ buf[rv-1]='\0';
return true;
}