diff options
| author | djm <> | 2010-10-01 22:59:01 +0000 |
|---|---|---|
| committer | djm <> | 2010-10-01 22:59:01 +0000 |
| commit | 8922d4bc4a8b8893d72a48deb2cdf58215f98505 (patch) | |
| tree | 939b752540947d33507b3acc48d76a8bfb7c3dc3 /src/lib/libcrypto/engine/eng_ctrl.c | |
| parent | 76262f7bf9262f965142b1b2b2105cb279c5c696 (diff) | |
| download | openbsd-8922d4bc4a8b8893d72a48deb2cdf58215f98505.tar.gz openbsd-8922d4bc4a8b8893d72a48deb2cdf58215f98505.tar.bz2 openbsd-8922d4bc4a8b8893d72a48deb2cdf58215f98505.zip | |
resolve conflicts, fix local changes
Diffstat (limited to 'src/lib/libcrypto/engine/eng_ctrl.c')
| -rw-r--r-- | src/lib/libcrypto/engine/eng_ctrl.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/engine/eng_ctrl.c b/src/lib/libcrypto/engine/eng_ctrl.c index 95b6b455aa..5ce25d92ec 100644 --- a/src/lib/libcrypto/engine/eng_ctrl.c +++ b/src/lib/libcrypto/engine/eng_ctrl.c | |||
| @@ -280,7 +280,7 @@ int ENGINE_ctrl_cmd(ENGINE *e, const char *cmd_name, | |||
| 280 | } | 280 | } |
| 281 | /* Force the result of the control command to 0 or 1, for the reasons | 281 | /* Force the result of the control command to 0 or 1, for the reasons |
| 282 | * mentioned before. */ | 282 | * mentioned before. */ |
| 283 | if (ENGINE_ctrl(e, num, i, p, f)) | 283 | if (ENGINE_ctrl(e, num, i, p, f) > 0) |
| 284 | return 1; | 284 | return 1; |
| 285 | return 0; | 285 | return 0; |
| 286 | } | 286 | } |
| @@ -345,7 +345,7 @@ int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg, | |||
| 345 | * usage of these commands is consistent across applications and | 345 | * usage of these commands is consistent across applications and |
| 346 | * that certain applications don't understand it one way, and | 346 | * that certain applications don't understand it one way, and |
| 347 | * others another. */ | 347 | * others another. */ |
| 348 | if(ENGINE_ctrl(e, num, 0, (void *)arg, NULL)) | 348 | if(ENGINE_ctrl(e, num, 0, (void *)arg, NULL) > 0) |
| 349 | return 1; | 349 | return 1; |
| 350 | return 0; | 350 | return 0; |
| 351 | } | 351 | } |
| @@ -360,7 +360,7 @@ int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg, | |||
| 360 | if(flags & ENGINE_CMD_FLAG_STRING) | 360 | if(flags & ENGINE_CMD_FLAG_STRING) |
| 361 | { | 361 | { |
| 362 | /* Same explanation as above */ | 362 | /* Same explanation as above */ |
| 363 | if(ENGINE_ctrl(e, num, 0, (void *)arg, NULL)) | 363 | if(ENGINE_ctrl(e, num, 0, (void *)arg, NULL) > 0) |
| 364 | return 1; | 364 | return 1; |
| 365 | return 0; | 365 | return 0; |
| 366 | } | 366 | } |
| @@ -383,7 +383,7 @@ int ENGINE_ctrl_cmd_string(ENGINE *e, const char *cmd_name, const char *arg, | |||
| 383 | } | 383 | } |
| 384 | /* Force the result of the control command to 0 or 1, for the reasons | 384 | /* Force the result of the control command to 0 or 1, for the reasons |
| 385 | * mentioned before. */ | 385 | * mentioned before. */ |
| 386 | if(ENGINE_ctrl(e, num, l, NULL, NULL)) | 386 | if(ENGINE_ctrl(e, num, l, NULL, NULL) > 0) |
| 387 | return 1; | 387 | return 1; |
| 388 | return 0; | 388 | return 0; |
| 389 | } | 389 | } |
