| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | truncation check some snprintf calls (over-cautiously in case) | 2014-04-19 | 4 | -19/+78 | ||
| | | | | | ok jsing beck | |||||
| * | Fix some serious pointer-arithmatic-magic-number-unchecked-return eyebleed | 2014-04-19 | 1 | -53/+44 | ||
| | | | | | | | | | | | that I stumbled into here and got stuck with. If modern society can get past selling daughters for cows, surely we can decide to write modern C code in an "application" that is probably 3 lines of shell/python/cgi away from talking to the internet in a lot of places.. (This file still needs a lot more love though) "oh god yuck" deraadt@ ok tedu@ | |||||
| * | Repair some indent to be more KNF, and break instead of fallthrough to | 2014-04-19 | 1 | -12/+14 | ||
| | | | | | default which does break | |||||
| * | Remove hacky workaround for Cray T3E. | 2014-04-19 | 1 | -11/+0 | ||
| | | | | | ok guenther | |||||
| * | oops, typo got into change | 2014-04-19 | 1 | -1/+1 | ||
| | | ||||||
| * | malloc + strlcpy -> strdup | 2014-04-19 | 1 | -3/+2 | ||
| | | ||||||
| * | unifdef ENOTDIR, everyone has it | 2014-04-19 | 1 | -15/+3 | ||
| | | ||||||
| * | We'll interpret a (void) cast on snprintf() to mean it's been verified that | 2014-04-19 | 5 | -23/+23 | ||
| | | | | | | | truncation is either desirable, not an issue, or is detected and handled later ok deraadt@ | |||||
| * | use intrinsic strlcpy and strlcat everywhere so we only have one set of | 2014-04-19 | 7 | -26/+26 | ||
| | | | | | | | funcitons to check for incorrect use. keep BUF_strlcpy and BUF_strlcat for API comptibility only. ok tedu@ | |||||
| * | collateral damage | 2014-04-18 | 1 | -0/+1 | ||
| | | ||||||
| * | $HOME/.rnd will never be a good source of entropy. ok beck | 2014-04-18 | 23 | -392/+2 | ||
| | | ||||||
| * | Use the cleaned up asprintf-based make_config_name() to make the name of | 2014-04-18 | 2 | -18/+8 | ||
| | | | | | | | | | the config file instead of the malloc/BUF_strlcpy/BUF_strlcat calls with no return value checks (that make_config_name() also used to do prior to being cleaned up). ok beck@ | |||||
| * | Check the return value of make_config_name() before attempting to use | 2014-04-18 | 1 | -1/+6 | ||
| | | | | | | | the config filename. ok beck@ | |||||
| * | another | 2014-04-18 | 1 | -3/+0 | ||
| | | ||||||
| * | another "string to make the random number generator think it has entropy" | 2014-04-18 | 1 | -23/+0 | ||
| | | ||||||
| * | Finish zapping SSL_OP_ALLOW_UNSAFE_LEGACY_RENEGOTIATION usage; only keep | 2014-04-18 | 2 | -7/+9 | ||
| | | | | | | | | the #define for compat, but document that it's a no-op now. Also, neuter the -legacy_renegotiation option to "openssl s_{client,server}" ok beck@ | |||||
| * | use the portable construct around asprintf; pointed out by halex | 2014-04-18 | 1 | -1/+2 | ||
| | | ||||||
| * | Put the final pieces from e_os.h in the required places, and remove it. | 2014-04-18 | 3 | -28/+3 | ||
| | | | | | | "dance on it's grave" says beck ok guenther beck | |||||
| * | These files were never installed in the past, and are not generally | 2014-04-18 | 45 | -1465/+0 | ||
| | | | | | | used. They can go away. ok guenther reyk | |||||
| * | Use asprintf() for generating path, instead of multiple | 2014-04-18 | 1 | -7/+1 | ||
| | | | | | return-value-not-checked strlcpy and strlcat | |||||
| * | egd support is too dangerous to leave where somebody might find it. | 2014-04-18 | 1 | -16/+2 | ||
| | | | | | ok deraadt. | |||||
| * | KNF, since this is no longer script generated | 2014-04-18 | 1 | -172/+171 | ||
| | | ||||||
| * | simplify file:file:... stuff | 2014-04-18 | 12 | -14/+13 | ||
| | | ||||||
| * | whitespace normalization | 2014-04-18 | 8 | -91/+81 | ||
| | | ||||||
| * | repair whitespace. this is what happens when functions take 20 params. | 2014-04-18 | 1 | -20/+20 | ||
| | | ||||||
| * | Remove MAIN and PROG defines now that we do not compile non-monolithic. | 2014-04-18 | 47 | -180/+93 | ||
| | | | | | ok tedu@ | |||||
| * | undef NETWARE_CLIB and NETWARE_LIBC | 2014-04-18 | 1 | -15/+0 | ||
| | | ||||||
| * | unterminated comment | 2014-04-18 | 1 | -1/+1 | ||
| | | ||||||
| * | KaboomNF | 2014-04-18 | 51 | -13869/+12180 | ||
| | | ||||||
| * | spelling fix from Micha Borrmann on openssl-dev | 2014-04-18 | 1 | -1/+1 | ||
| | | ||||||
| * | Remove support for unwanted operating systems. | 2014-04-18 | 3 | -82/+0 | ||
| | | | | | ok miod@ | |||||
| * | Unifdef OPENSSL_FIPS. | 2014-04-18 | 3 | -25/+0 | ||
| | | | | | ok miod@ | |||||
| * | Make MONOLITH the default and only option | 2014-04-17 | 4 | -50/+1 | ||
| | | | | | ok deraadt | |||||
| * | oops, exit vs return; spotted by matthew | 2014-04-17 | 7 | -7/+7 | ||
| | | ||||||
| * | unistd.h exposed after -Wall after e_os.h stops doing so; spotted by matthew | 2014-04-17 | 5 | -0/+5 | ||
| | | ||||||
| * | OpenBSD isn't NetWare or Windows, and it has SIGPIPE. | 2014-04-17 | 1 | -11/+0 | ||
| | | | | | ok lteo miod | |||||
| * | since we're replacing LIST_SEPARATOR_CHAR with ':', no point using %c | 2014-04-17 | 1 | -1/+1 | ||
| | | | | | in the help printf | |||||
| * | Mostly gut e_os.h: | 2014-04-17 | 42 | -64/+67 | ||
| | | | | | | | | | USE_SOCKETS is unrelated to using sockets, but just pulls in .h files. It makes every file buy a kitchen sink, because 11 files forgot to. EXIT() is really exit(), a gentle surprise but... OPENSSL_EXIT() is really just return(), because noone compiles the openssl command non-monolithic anymore | |||||
| * | dead code | 2014-04-17 | 1 | -2/+0 | ||
| | | ||||||
| * | expunge more of the old build system | 2014-04-17 | 1 | -170/+0 | ||
| | | | | | ok deraadt miod | |||||
| * | Initial KNF. | 2014-04-17 | 4 | -502/+459 | ||
| | | ||||||
| * | Initial KNF. | 2014-04-17 | 2 | -173/+133 | ||
| | | ||||||
| * | More KNF. | 2014-04-17 | 2 | -11/+16 | ||
| | | ||||||
| * | More KNF. | 2014-04-17 | 1 | -11/+17 | ||
| | | ||||||
| * | Initial KNF. | 2014-04-17 | 1 | -329/+289 | ||
| | | ||||||
| * | Initial KNF. | 2014-04-17 | 1 | -212/+214 | ||
| | | ||||||
| * | Remove defines for unwanted OS support... | 2014-04-17 | 1 | -54/+0 | ||
| | | | | | ok miod@ | |||||
| * | Change library to use intrinsic memory allocation functions instead of | 2014-04-17 | 37 | -196/+196 | ||
| | | | | | | | | | OPENSSL_foo wrappers. This changes: OPENSSL_malloc->malloc OPENSSL_free->free OPENSSL_relloc->realloc OPENSSL_freeFunc->free | |||||
| * | Revert unintended whitespace changes. | 2014-04-17 | 1 | -7/+7 | ||
| | | ||||||
| * | Fix for ", " issue in jsing's knf script | 2014-04-17 | 1 | -2/+2 | ||
| | | ||||||
