freebsd-ports/security/openscep/files/patch-lib_init.c
Jean-Yves Lefort 9e01a15a9e Add openscep.
OpenSCEP is an open source implementation of the SCEP protocol used by Cisco
routers for certificate enrollment to build VPNs. It implements most of the
draft specification.

OpenSCEP includes a client and a server implementation, as well as some CGI
programs to simplify certificate and revocation list management.

WWW: http://openscep.othello.ch/

PR:		ports/81264
Submitted by:	Vsevolod Stakhov <vsevolod@highsecure.ru>
2005-05-23 22:21:25 +00:00

22 lines
556 B
C

--- lib/init.c.orig Wed Feb 20 02:40:06 2002
+++ lib/init.c Thu May 19 16:23:01 2005
@@ -21,6 +21,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
+#include <openscep_err.h>
#define TMPPATH "/var/tmp/openscep"
@@ -66,6 +67,11 @@
ERR_load_crypto_strings();
if (debug)
fprintf(stderr, "%s:%d: crypto strings loaded\n", __FILE__,
+ __LINE__);
+
+ ERR_load_OPENSCEP_strings();
+ if (debug)
+ fprintf(stderr, "%s:%d: openscep strings loaded\n", __FILE__,
__LINE__);
/* add the encryption algorithms available */