Commit 1f8e046a authored by Richard Levitte's avatar Richard Levitte
Browse files

Since fips_err is really just used as a header by fips_err_wrapper.c,

let's change it's suffix from .c to .h.  This also avoids some
otherwise very mysterious (and probably sensible from a historical
point of view :-)) name changes done by mk1mf.pl.
parent 7e1ef2d6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ L DSO crypto/dso/dso.h crypto/dso/dso_err.c
L ENGINE	crypto/engine/engine.h		crypto/engine/eng_err.c
L OCSP		crypto/ocsp/ocsp.h		crypto/ocsp/ocsp_err.c
L UI		crypto/ui/ui.h			crypto/ui/ui_err.c
L FIPS		fips/fips.h			fips/fips_err.c
L FIPS		fips/fips.h			fips/fips_err.h

# additional header files to be scanned for function names
L NONE		crypto/x509/x509_vfy.h		NONE
+3 −3
Original line number Diff line number Diff line
@@ -32,13 +32,13 @@ GENERAL=Makefile README fips-lib.com install.com

LIB= $(TOP)/libcrypto.a
SHARED_LIB= libcrypto$(SHLIB_EXT)
LIBSRC=fips.c fips_err_wrapper.c fips_err.c
LIBOBJ=fips.o fips_err_wrapper.o fips_err.o
LIBSRC=fips.c fips_err_wrapper.c
LIBOBJ=fips.o fips_err_wrapper.o

SRC= $(LIBSRC)

EXHEADER=fips.h
HEADER=$(EXHEADER)
HEADER=$(EXHEADER) fips_err.h
EXE=openssl_fips_fingerprint

ALL=    $(GENERAL) $(SRC) $(HEADER)
+0 −0

File moved.

+1 −1
Original line number Diff line number Diff line
#ifdef FIPS
# include "fips_err.c"
# include "fips_err.h"
#else
static void *dummy=&dummy;
#endif