commit | 2a600d7afd55ed71076e9c41469f6bba72d1f313 | [log] [tgz] |
---|---|---|
author | Richard Levitte <levitte@openssl.org> | Mon Aug 01 13:07:48 2016 +0200 |
committer | Richard Levitte <levitte@openssl.org> | Mon Aug 01 15:16:27 2016 +0200 |
tree | d1dcd796d81e263e986cbffbcc8af1f5a74b126b | |
parent | febb096c4c5d927c3f48f22adce64839721e79dc [diff] |
Fix return values of do_passwd() in apps/passwd.c do_passwd() was returning 0 on success and 1 on failure. However, those values were interpreted the other way around. The fix that makes the most sense is to change what do_passwd() returns. Reviewed-by: Rich Salz <rsalz@openssl.org>