#include <ssl/foo.h> -> #include <openssl/foo.h>

This commit is contained in:
kris 2000-03-26 10:00:28 +00:00
parent 18952ef3c0
commit 9ff72212a8
3 changed files with 11 additions and 7 deletions

View File

@ -12,6 +12,7 @@
* Rhosts or /etc/hosts.equiv authentication combined with RSA host
* authentication.
*
* $FreeBSD$
*/
#include "includes.h"
@ -23,8 +24,8 @@ RCSID("$Id: auth-rh-rsa.c,v 1.11 2000/03/23 22:15:33 markus Exp $");
#include "uidswap.h"
#include "servconf.h"
#include <ssl/rsa.h>
#include <ssl/dsa.h>
#include <openssl/rsa.h>
#include <openssl/dsa.h>
#include "key.h"
#include "hostfile.h"

View File

@ -11,6 +11,7 @@
*
* Functions for manipulating the known hosts files.
*
* $FreeBSD$
*/
#include "includes.h"
@ -19,8 +20,8 @@ RCSID("$OpenBSD: hostfile.c,v 1.14 2000/03/23 22:15:33 markus Exp $");
#include "packet.h"
#include "match.h"
#include "ssh.h"
#include <ssl/rsa.h>
#include <ssl/dsa.h>
#include <openssl/rsa.h>
#include <openssl/dsa.h>
#include "key.h"
#include "hostfile.h"

View File

@ -25,6 +25,8 @@
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* $FreeBSD$
*/
/*
* read_bignum():
@ -33,9 +35,9 @@
#include "includes.h"
#include "ssh.h"
#include <ssl/rsa.h>
#include <ssl/dsa.h>
#include <ssl/evp.h>
#include <openssl/rsa.h>
#include <openssl/dsa.h>
#include <openssl/evp.h>
#include "xmalloc.h"
#include "key.h"