summaryrefslogtreecommitdiffstats
path: root/Utilities/cmcurl/lib/strcase.c
diff options
context:
space:
mode:
Diffstat (limited to 'Utilities/cmcurl/lib/strcase.c')
-rw-r--r--Utilities/cmcurl/lib/strcase.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Utilities/cmcurl/lib/strcase.c b/Utilities/cmcurl/lib/strcase.c
index a750f7b..a74a4be 100644
--- a/Utilities/cmcurl/lib/strcase.c
+++ b/Utilities/cmcurl/lib/strcase.c
@@ -125,9 +125,9 @@ int Curl_safe_strcasecompare(const char *first, const char *second)
if(first && second)
/* both pointers point to something then compare them */
return Curl_strcasecompare(first, second);
- else
- /* if both pointers are NULL then treat them as equal */
- return (NULL == first && NULL == second);
+
+ /* if both pointers are NULL then treat them as equal */
+ return (NULL == first && NULL == second);
}
/*