aboutsummaryrefslogtreecommitdiffstats
path: root/apps/rehash.c
Commit message (Collapse)AuthorAgeFilesLines
* Rename some BUF_xxx to OPENSSL_xxxRich Salz2015-12-161-2/+2
| | | | | | | | | Rename BUF_{strdup,strlcat,strlcpy,memdup,strndup,strnlen} to OPENSSL_{strdup,strlcat,strlcpy,memdup,strndup,strnlen} Add #define's for the old names. Add CRYPTO_{memdup,strndup}, called by OPENSSL_{memdup,strndup} macros. Reviewed-by: Tim Hudson <tjh@openssl.org>
* GH408 follow-on: update buflenAlessandro Ghedini2015-09-251-1/+5
| | | | | | | | | Some builds break, as documented in: https://github.com/openssl/openssl/pull/408#issuecomment-142971427 This fixes it. Signed-off-by: Rich Salz <rsalz@akamai.com> Reviewed-by: Tim Hudson <tjh@openssl.org>
* fix compilation on SolarisVladimir Kotal2015-09-241-3/+2
| | | | | Signed-off-by: Rich Salz <rsalz@akamai.com> Reviewed-by: Tim Hudson <tjh@openssl.org>
* RT4033: Use OPENSSL_SYS_UNIX not "unix"Rich Salz2015-09-171-2/+2
| | | | | | Real fix for RT 4033 Reviewed-by: Richard Levitte <levitte@openssl.org>
* Unwriteable directories are errorsRich Salz2015-09-101-1/+1
| | | | | | Make the script and app match the documentation. Reviewed-by: Tim Hudson <tjh@openssl.org>
* Fix rehash/c_rehash doc and behavior.Rich Salz2015-09-081-0/+4
| | | | | | | | Both now warn once if directory isn't writeable. Both now warn on file-write errors (multiple times). Update manpage to describe both program and script correctly. Reviewed-by: Richard Levitte <levitte@openssl.org>
* Fix uninit warning. Remove unnecessary casts. Nothing to add is an error.Ben Laurie2015-09-081-5/+10
| | | | | Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
* add support for apple os/xRich Salz2015-09-071-3/+2
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* GH391: Apple portRich Salz2015-09-071-28/+57
| | | | | | | Also make internal functions consistently return values, and add a comment documenting them. Reviewed-by: Ben Laurie <ben@openssl.org>
* fix build breakage on windowsRich Salz2015-09-061-0/+3
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Fix typo, that broke build on non-unixRich Salz2015-09-061-1/+1
| | | | Reviewed-by: Tim Hudson <tjh@openssl.org>
* Add rehash command to opensslTimo Teras2015-09-061-0/+451
On Unix/Linux platforms, merge c_rehash script into openssl as a C program. Signed-off-by: Rich Salz <rsalz@akamai.com> Reviewed-by: Tim Hudson <tjh@openssl.org>