diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-19 15:39:06 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-19 15:39:06 +0000 |
commit | 7729c63be04d6612126a991dd25507716babae0e (patch) | |
tree | c0972e0081ad6af3777b18c3797b7ec5bca8b83f /tests/libtest | |
parent | eebcf9094234c1d80e66b8ad21a158eecfdb185d (diff) |
fixed the no-ssl version to return int as well
Diffstat (limited to 'tests/libtest')
-rw-r--r-- | tests/libtest/lib509.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/libtest/lib509.c b/tests/libtest/lib509.c index 0f956ebfb..d1f32e7c6 100644 --- a/tests/libtest/lib509.c +++ b/tests/libtest/lib509.c @@ -251,7 +251,7 @@ int test(char *URL) return i; } #else /* USE_SSLEAY */ -CURLcode test(char *URL) +int test(char *URL) { (void)URL; return CURLE_FAILED_INIT; |