~ubuntu-branches/ubuntu/utopic/openssl/utopic

« back to all changes in this revision

Viewing changes to crypto/dso/dso_err.c

  • Committer: Bazaar Package Importer
  • Author(s): Kurt Roeckx
  • Date: 2011-04-02 13:19:19 UTC
  • mfrom: (1.2.1 upstream) (11.2.2 experimental)
  • mto: This revision was merged to the branch mainline in revision 55.
  • Revision ID: james.westby@ubuntu.com-20110402131919-anszuslper64ey9e
Tags: 1.0.0d-1
* New upstream version
  - Fixes CVE-2011-0014
* Make libssl-doc Replaces/Breaks with old libssl-dev packages
  (Closes: #607609)
* Only export the symbols we should, instead of all.
* Add symbol file.
* Upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* crypto/dso/dso_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
5
 * Redistribution and use in source and binary forms, with or without
6
6
 * modification, are permitted provided that the following conditions
70
70
 
71
71
static ERR_STRING_DATA DSO_str_functs[]=
72
72
        {
 
73
{ERR_FUNC(DSO_F_BEOS_BIND_FUNC),        "BEOS_BIND_FUNC"},
 
74
{ERR_FUNC(DSO_F_BEOS_BIND_VAR), "BEOS_BIND_VAR"},
 
75
{ERR_FUNC(DSO_F_BEOS_LOAD),     "BEOS_LOAD"},
 
76
{ERR_FUNC(DSO_F_BEOS_NAME_CONVERTER),   "BEOS_NAME_CONVERTER"},
 
77
{ERR_FUNC(DSO_F_BEOS_UNLOAD),   "BEOS_UNLOAD"},
73
78
{ERR_FUNC(DSO_F_DLFCN_BIND_FUNC),       "DLFCN_BIND_FUNC"},
74
79
{ERR_FUNC(DSO_F_DLFCN_BIND_VAR),        "DLFCN_BIND_VAR"},
75
80
{ERR_FUNC(DSO_F_DLFCN_LOAD),    "DLFCN_LOAD"},
89
94
{ERR_FUNC(DSO_F_DSO_FREE),      "DSO_free"},
90
95
{ERR_FUNC(DSO_F_DSO_GET_FILENAME),      "DSO_get_filename"},
91
96
{ERR_FUNC(DSO_F_DSO_GET_LOADED_FILENAME),       "DSO_get_loaded_filename"},
 
97
{ERR_FUNC(DSO_F_DSO_GLOBAL_LOOKUP),     "DSO_global_lookup"},
92
98
{ERR_FUNC(DSO_F_DSO_LOAD),      "DSO_load"},
93
99
{ERR_FUNC(DSO_F_DSO_MERGE),     "DSO_merge"},
94
100
{ERR_FUNC(DSO_F_DSO_NEW_METHOD),        "DSO_new_method"},
 
101
{ERR_FUNC(DSO_F_DSO_PATHBYADDR),        "DSO_pathbyaddr"},
95
102
{ERR_FUNC(DSO_F_DSO_SET_FILENAME),      "DSO_set_filename"},
96
103
{ERR_FUNC(DSO_F_DSO_SET_NAME_CONVERTER),        "DSO_set_name_converter"},
97
104
{ERR_FUNC(DSO_F_DSO_UP_REF),    "DSO_up_ref"},
 
105
{ERR_FUNC(DSO_F_GLOBAL_LOOKUP_FUNC),    "GLOBAL_LOOKUP_FUNC"},
 
106
{ERR_FUNC(DSO_F_PATHBYADDR),    "PATHBYADDR"},
98
107
{ERR_FUNC(DSO_F_VMS_BIND_SYM),  "VMS_BIND_SYM"},
99
108
{ERR_FUNC(DSO_F_VMS_LOAD),      "VMS_LOAD"},
100
109
{ERR_FUNC(DSO_F_VMS_MERGER),    "VMS_MERGER"},
101
110
{ERR_FUNC(DSO_F_VMS_UNLOAD),    "VMS_UNLOAD"},
102
111
{ERR_FUNC(DSO_F_WIN32_BIND_FUNC),       "WIN32_BIND_FUNC"},
103
112
{ERR_FUNC(DSO_F_WIN32_BIND_VAR),        "WIN32_BIND_VAR"},
 
113
{ERR_FUNC(DSO_F_WIN32_GLOBALLOOKUP),    "WIN32_GLOBALLOOKUP"},
 
114
{ERR_FUNC(DSO_F_WIN32_GLOBALLOOKUP_FUNC),       "WIN32_GLOBALLOOKUP_FUNC"},
104
115
{ERR_FUNC(DSO_F_WIN32_JOINER),  "WIN32_JOINER"},
105
116
{ERR_FUNC(DSO_F_WIN32_LOAD),    "WIN32_LOAD"},
106
117
{ERR_FUNC(DSO_F_WIN32_MERGER),  "WIN32_MERGER"},
107
118
{ERR_FUNC(DSO_F_WIN32_NAME_CONVERTER),  "WIN32_NAME_CONVERTER"},
 
119
{ERR_FUNC(DSO_F_WIN32_PATHBYADDR),      "WIN32_PATHBYADDR"},
108
120
{ERR_FUNC(DSO_F_WIN32_SPLITTER),        "WIN32_SPLITTER"},
109
121
{ERR_FUNC(DSO_F_WIN32_UNLOAD),  "WIN32_UNLOAD"},
110
122
{0,NULL}