Add -show_chain option to print out verified chain.
[openssl.git] / crypto / buffer / buf_err.c
index b433f5c81454423449aee9b032853bc1d23c43b4..8f1de6192be49023708c10170c63b91aa3202754 100644 (file)
@@ -1,6 +1,6 @@
 /* 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
@@ -72,6 +72,7 @@ static ERR_STRING_DATA BUF_str_functs[]=
        {
 {ERR_FUNC(BUF_F_BUF_MEMDUP),   "BUF_memdup"},
 {ERR_FUNC(BUF_F_BUF_MEM_GROW), "BUF_MEM_grow"},
+{ERR_FUNC(BUF_F_BUF_MEM_GROW_CLEAN),   "BUF_MEM_grow_clean"},
 {ERR_FUNC(BUF_F_BUF_MEM_NEW),  "BUF_MEM_new"},
 {ERR_FUNC(BUF_F_BUF_STRDUP),   "BUF_strdup"},
 {ERR_FUNC(BUF_F_BUF_STRNDUP),  "BUF_strndup"},
@@ -87,15 +88,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
        }