diff options
author | Brent Cook <bcook@openbsd.org> | 2015-06-05 22:16:02 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-06-05 22:16:02 -0500 |
commit | 88acad37ce51b7614b10ea9b92fd2cd5b9eec1b8 (patch) | |
tree | 4550cd2c80a3864fe23a2ae3b6769372f89c10f5 | |
parent | df703ada9ff36dfa588d4a1eb19f9c18cd39afda (diff) | |
download | portable-88acad37ce51b7614b10ea9b92fd2cd5b9eec1b8.tar.gz portable-88acad37ce51b7614b10ea9b92fd2cd5b9eec1b8.tar.bz2 portable-88acad37ce51b7614b10ea9b92fd2cd5b9eec1b8.zip |
return 1 on failure
-rw-r--r-- | libtls-standalone/tests/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libtls-standalone/tests/test.c b/libtls-standalone/tests/test.c index b2b7c67..1b8c761 100644 --- a/libtls-standalone/tests/test.c +++ b/libtls-standalone/tests/test.c | |||
@@ -47,5 +47,5 @@ int main() | |||
47 | 47 | ||
48 | err: | 48 | err: |
49 | fprintf(stderr, "%s\n", tls_error(tls)); | 49 | fprintf(stderr, "%s\n", tls_error(tls)); |
50 | return 0; | 50 | return 1; |
51 | } | 51 | } |