Submitted by:

Reviewed by:
PR:
This commit is contained in:
Bodo Möller
1999-04-23 23:28:26 +00:00
parent 09be75a480
commit dd3c43c532
19 changed files with 31 additions and 31 deletions

View File

@@ -11,11 +11,11 @@
#include <netdb.h>
#include "rsa.h" /* SSLeay stuff */
#include "crypto.h"
#include "x509.h"
#include "pem.h"
#include "ssl.h"
#include "err.h"
#include <openssl/crypto.h>
#include <openssl/x509.h>
#include <openssl/pem.h>
#include <openssl/ssl.h>
#include <openssl/err.h>
#define CHK_NULL(x) if ((x)==NULL) exit (1)
#define CHK_ERR(err,s) if ((err)==-1) { perror(s); exit(1); }