summaryrefslogtreecommitdiffstats
path: root/Source/CTest/Curl/netrc.c
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-05-01 15:55:05 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-05-01 15:55:05 (GMT)
commit9d6ee55fdf357fde9e748f30e6b859fca2dea44e (patch)
tree1e1c66a042f56ab15ef36192e8b4d65df5f4d129 /Source/CTest/Curl/netrc.c
parent93f7601d0f8edaadbfe72eca546c30a42a53a25c (diff)
downloadCMake-9d6ee55fdf357fde9e748f30e6b859fca2dea44e.zip
CMake-9d6ee55fdf357fde9e748f30e6b859fca2dea44e.tar.gz
CMake-9d6ee55fdf357fde9e748f30e6b859fca2dea44e.tar.bz2
ERR: Remove warnings
Diffstat (limited to 'Source/CTest/Curl/netrc.c')
-rw-r--r--Source/CTest/Curl/netrc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/Curl/netrc.c b/Source/CTest/Curl/netrc.c
index a2d6708..a8f0c01 100644
--- a/Source/CTest/Curl/netrc.c
+++ b/Source/CTest/Curl/netrc.c
@@ -181,7 +181,7 @@ int Curl_parsenetrc(char *host,
/* we are now parsing sub-keywords concerning "our" host */
if(state_login) {
if (specific_login) {
- state_our_login = strequal(login, tok);
+ state_our_login = (char)strequal(login, tok);
}else{
strncpy(login, tok, LOGINSIZE-1);
#ifdef _NETRC_DEBUG