| OLD | NEW |
| 1 /* crypto/ecdsa/ecs_err.c */ | 1 /* crypto/ecdsa/ecs_err.c */ |
| 2 /* ==================================================================== | 2 /* ==================================================================== |
| 3 * Copyright (c) 1999-2005 The OpenSSL Project. All rights reserved. | 3 * Copyright (c) 1999-2006 The OpenSSL Project. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| 11 * | 11 * |
| 12 * 2. Redistributions in binary form must reproduce the above copyright | 12 * 2. Redistributions in binary form must reproduce the above copyright |
| 13 * notice, this list of conditions and the following disclaimer in | 13 * notice, this list of conditions and the following disclaimer in |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 { | 95 { |
| 96 #ifndef OPENSSL_NO_ERR | 96 #ifndef OPENSSL_NO_ERR |
| 97 | 97 |
| 98 if (ERR_func_error_string(ECDSA_str_functs[0].error) == NULL) | 98 if (ERR_func_error_string(ECDSA_str_functs[0].error) == NULL) |
| 99 { | 99 { |
| 100 ERR_load_strings(0,ECDSA_str_functs); | 100 ERR_load_strings(0,ECDSA_str_functs); |
| 101 ERR_load_strings(0,ECDSA_str_reasons); | 101 ERR_load_strings(0,ECDSA_str_reasons); |
| 102 } | 102 } |
| 103 #endif | 103 #endif |
| 104 } | 104 } |
| OLD | NEW |