Commit ea474c56 authored by Dr. Stephen Henson's avatar Dr. Stephen Henson
Browse files

Rebuild error source files.

parent f6cdaa96
Loading
Loading
Loading
Loading
+4 −7
Original line number Diff line number Diff line
/* crypto/asn1/asn1_err.c */
/* ====================================================================
 * Copyright (c) 1999-2005 The OpenSSL Project.  All rights reserved.
 * Copyright (c) 1999-2006 The OpenSSL Project.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
@@ -240,15 +240,12 @@ static ERR_STRING_DATA ASN1_str_reasons[]=

void ERR_load_ASN1_strings(void)
	{
	static int init=1;
#ifndef OPENSSL_NO_ERR

	if (init)
	if (ERR_func_error_string(ASN1_str_functs[0].error) == NULL)
		{
		init=0;
#ifndef OPENSSL_NO_ERR
		ERR_load_strings(0,ASN1_str_functs);
		ERR_load_strings(0,ASN1_str_reasons);
#endif

		}
#endif
	}
+4 −7
Original line number Diff line number Diff line
/* crypto/bio/bio_err.c */
/* ====================================================================
 * Copyright (c) 1999-2005 The OpenSSL Project.  All rights reserved.
 * Copyright (c) 1999-2006 The OpenSSL Project.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
@@ -142,15 +142,12 @@ static ERR_STRING_DATA BIO_str_reasons[]=

void ERR_load_BIO_strings(void)
	{
	static int init=1;
#ifndef OPENSSL_NO_ERR

	if (init)
	if (ERR_func_error_string(BIO_str_functs[0].error) == NULL)
		{
		init=0;
#ifndef OPENSSL_NO_ERR
		ERR_load_strings(0,BIO_str_functs);
		ERR_load_strings(0,BIO_str_reasons);
#endif

		}
#endif
	}
+4 −7
Original line number Diff line number Diff line
/* crypto/bn/bn_err.c */
/* ====================================================================
 * Copyright (c) 1999-2005 The OpenSSL Project.  All rights reserved.
 * Copyright (c) 1999-2006 The OpenSSL Project.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
@@ -125,15 +125,12 @@ static ERR_STRING_DATA BN_str_reasons[]=

void ERR_load_BN_strings(void)
	{
	static int init=1;
#ifndef OPENSSL_NO_ERR

	if (init)
	if (ERR_func_error_string(BN_str_functs[0].error) == NULL)
		{
		init=0;
#ifndef OPENSSL_NO_ERR
		ERR_load_strings(0,BN_str_functs);
		ERR_load_strings(0,BN_str_reasons);
#endif

		}
#endif
	}
+4 −7
Original line number Diff line number Diff line
/* crypto/buffer/buf_err.c */
/* ====================================================================
 * Copyright (c) 1999-2005 The OpenSSL Project.  All rights reserved.
 * Copyright (c) 1999-2006 The OpenSSL Project.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
@@ -85,15 +85,12 @@ static ERR_STRING_DATA BUF_str_reasons[]=

void ERR_load_BUF_strings(void)
	{
	static int init=1;
#ifndef OPENSSL_NO_ERR

	if (init)
	if (ERR_func_error_string(BUF_str_functs[0].error) == NULL)
		{
		init=0;
#ifndef OPENSSL_NO_ERR
		ERR_load_strings(0,BUF_str_functs);
		ERR_load_strings(0,BUF_str_reasons);
#endif

		}
#endif
	}
+4 −7
Original line number Diff line number Diff line
/* crypto/conf/conf_err.c */
/* ====================================================================
 * Copyright (c) 1999-2005 The OpenSSL Project.  All rights reserved.
 * Copyright (c) 1999-2006 The OpenSSL Project.  All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
@@ -116,15 +116,12 @@ static ERR_STRING_DATA CONF_str_reasons[]=

void ERR_load_CONF_strings(void)
	{
	static int init=1;
#ifndef OPENSSL_NO_ERR

	if (init)
	if (ERR_func_error_string(CONF_str_functs[0].error) == NULL)
		{
		init=0;
#ifndef OPENSSL_NO_ERR
		ERR_load_strings(0,CONF_str_functs);
		ERR_load_strings(0,CONF_str_reasons);
#endif

		}
#endif
	}
Loading