Normalize spelling to serialiZation
We have explicit recommendations to use US spelling for technical writing, so
let's apply this to code as well for uniformity. (My fingers tend to prefer UK
spelling, so this needs to be fixed in many places.)
sed -i 's/\([Ss]eriali\)s/\1z/g' **/*.[ch] **/*.function **/*.data ChangeLog
diff --git a/library/ssl_tls.c b/library/ssl_tls.c
index cc70510..8342a3e 100644
--- a/library/ssl_tls.c
+++ b/library/ssl_tls.c
@@ -9959,7 +9959,7 @@
}
/*
- * Unserialise session, see mbedtls_ssl_session_save().
+ * Unserialize session, see mbedtls_ssl_session_save().
*
* This internal version is wrapped by a public function that cleans up in
* case of error.
@@ -10095,7 +10095,7 @@
}
/*
- * Unserialise session: public wrapper for error cleaning
+ * Unserialize session: public wrapper for error cleaning
*/
int mbedtls_ssl_session_load( mbedtls_ssl_session *session,
const unsigned char *buf,