Skip to content

Commit 74e443c

Browse files
committed
Nit picks [ci skip]
1 parent 438311c commit 74e443c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

platforms/unix/plugins/SqueakSSL/openssl_overlay.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* CONTENT: Overlay OpenSSL for Linux/Unix
77
*
88
* AUTHORS: Tobias Pape (topa)
9-
* Hasso Plattner Institute, Postdam, Germany
9+
* Hasso Plattner Institute, Potsdam, Germany
1010
*****************************************************************************
1111
* When we dynamically link against OpenSSL, the bundles are not
1212
* portable, as CentOS and friends use other SO_NAMEs than Debian and
@@ -33,7 +33,7 @@
3333
*
3434
* SQO_DECL___(RETURN_TYPE, NAME, ARGS...)
3535
*
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,
3737
* for example:
3838
*
3939
* SQO_DECL102 (Available since OpenSSL 1.0.2)
@@ -130,7 +130,7 @@
130130
* List of optional OpenSSL constants
131131
*
132132
* 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
134134
* compile time.
135135
*/
136136
#if defined(X509_CHECK_FLAG_SINGLE_LABEL_SUBDOMAINS)
@@ -169,8 +169,8 @@
169169
*
170170
* The following stanzas will do this:
171171
*
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
174174
* * define static handles for dynamic libraries
175175
* * helper function that does actual lookup
176176
* * helper function that unloads libraries on SqueakSSL unload
@@ -181,7 +181,7 @@
181181
* * When compiling linked (not dynamically loaded):
182182
* * alias all necessary OpenSSL symbols to sqo_ prefixed
183183
* * 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
185185
*
186186
* That's it, essentially.
187187
*/
@@ -232,7 +232,7 @@ void SQO_DESTRUCTOR fini(void)
232232
* Macro that lookups a symbol in a library and does immediately
233233
* return the address when found.
234234
*
235-
* (whith optional debug output)
235+
* (with optional debug output)
236236
*/
237237
#if (defined(DEBUG) || defined(DEBUGVM)) && !defined(NDEBUG)
238238
#define SQO_HAS_FOUND_SYM(s,n,h) \
@@ -319,7 +319,7 @@ SQO_DECLARATIONS
319319
* true when all required symbols could be loaded/are linked
320320
* false when at least one required symbol could not be loaded
321321
*
322-
* Call this exaclty once!
322+
* Call this exactly once!
323323
*/
324324
bool loadLibrary(void)
325325
{

0 commit comments

Comments
 (0)