|
6 | 6 | * CONTENT: Overlay OpenSSL for Linux/Unix |
7 | 7 | * |
8 | 8 | * AUTHORS: Tobias Pape (topa) |
9 | | - * Hasso Plattner Institute, Postdam, Germany |
| 9 | + * Hasso Plattner Institute, Potsdam, Germany |
10 | 10 | ***************************************************************************** |
11 | 11 | * When we dynamically link against OpenSSL, the bundles are not |
12 | 12 | * portable, as CentOS and friends use other SO_NAMEs than Debian and |
|
33 | 33 | * |
34 | 34 | * SQO_DECL___(RETURN_TYPE, NAME, ARGS...) |
35 | 35 | * |
36 | | - * For symbols that appeard first version XYZ (X >=1) use SQO_DECLXYZ, |
| 36 | + * For symbols that appeared first version XYZ (X >=1) use SQO_DECLXYZ, |
37 | 37 | * for example: |
38 | 38 | * |
39 | 39 | * SQO_DECL102 (Available since OpenSSL 1.0.2) |
|
130 | 130 | * List of optional OpenSSL constants |
131 | 131 | * |
132 | 132 | * This is necessary to allow usage of those constants with newer |
133 | | - * dyamically loaded libraries, but whlist using older versions at |
| 133 | + * dynamically loaded libraries, but whilst using older versions at |
134 | 134 | * compile time. |
135 | 135 | */ |
136 | 136 | #if defined(X509_CHECK_FLAG_SINGLE_LABEL_SUBDOMAINS) |
|
169 | 169 | * |
170 | 170 | * The following stanzas will do this: |
171 | 171 | * |
172 | | - * * When compiling non-linked (dynmically loaded): |
173 | | - * * find dl-header, define helper marcos for symbol lookup |
| 172 | + * * When compiling non-linked (dynamically loaded): |
| 173 | + * * find dl-header, define helper macros for symbol lookup |
174 | 174 | * * define static handles for dynamic libraries |
175 | 175 | * * helper function that does actual lookup |
176 | 176 | * * helper function that unloads libraries on SqueakSSL unload |
|
181 | 181 | * * When compiling linked (not dynamically loaded): |
182 | 182 | * * alias all necessary OpenSSL symbols to sqo_ prefixed |
183 | 183 | * * otherwise, when compiling non-linked (dynamically loaded): |
184 | | - * * lookup every symbol and assing to sqo_ prefixed name |
| 184 | + * * lookup every symbol and assign to sqo_ prefixed name |
185 | 185 | * |
186 | 186 | * That's it, essentially. |
187 | 187 | */ |
@@ -232,7 +232,7 @@ void SQO_DESTRUCTOR fini(void) |
232 | 232 | * Macro that lookups a symbol in a library and does immediately |
233 | 233 | * return the address when found. |
234 | 234 | * |
235 | | - * (whith optional debug output) |
| 235 | + * (with optional debug output) |
236 | 236 | */ |
237 | 237 | #if (defined(DEBUG) || defined(DEBUGVM)) && !defined(NDEBUG) |
238 | 238 | #define SQO_HAS_FOUND_SYM(s,n,h) \ |
@@ -319,7 +319,7 @@ SQO_DECLARATIONS |
319 | 319 | * true when all required symbols could be loaded/are linked |
320 | 320 | * false when at least one required symbol could not be loaded |
321 | 321 | * |
322 | | - * Call this exaclty once! |
| 322 | + * Call this exactly once! |
323 | 323 | */ |
324 | 324 | bool loadLibrary(void) |
325 | 325 | { |
|
0 commit comments