Deleted Added
full compact
cryptlib.c (100936) cryptlib.c (101613)
1/* crypto/cryptlib.c */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *

--- 477 unchanged lines hidden (view full) ---

486 case DLL_PROCESS_DETACH:
487 break;
488 }
489 return(TRUE);
490 }
491#endif
492
493#endif
1/* crypto/cryptlib.c */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved.
4 *
5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL.
8 *

--- 477 unchanged lines hidden (view full) ---

486 case DLL_PROCESS_DETACH:
487 break;
488 }
489 return(TRUE);
490 }
491#endif
492
493#endif
494
495void OpenSSLDie(const char *file,int line,const char *assertion)
496 {
497 fprintf(stderr,"%s(%d): OpenSSL internal error, assertion failed: %s\n",
498 file,line,assertion);
499 abort();
500 }
501