all: Fix typos
diff --git a/Makefile.am b/Makefile.am
index 84d008f..860d591 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -666,7 +666,7 @@
$(AM_V_at)rm -r unit/cert-ca-tmp unit/cert-ca-index.txt
unit/cert-entity-pkcs12-nomac.p12: unit/cert-entity-int-key.pem unit/cert-entity-int.pem
- $(AM_V_GEN)openssl pkcs12 -inkey $< -in $(builddir)/unit/cert-entity-int.pem -out $@ -export -passout pass:abc -nomac # defaut ciphers
+ $(AM_V_GEN)openssl pkcs12 -inkey $< -in $(builddir)/unit/cert-entity-int.pem -out $@ -export -passout pass:abc -nomac # default ciphers
unit/cert-entity-pkcs12-rc2-sha1.p12: unit/cert-entity-int-key.pem unit/cert-entity-int.pem unit/cert-chain.pem
$(AM_V_GEN)openssl pkcs12 -inkey $< -in $(builddir)/unit/cert-entity-int.pem -certfile $(builddir)/unit/cert-chain.pem -out $@ -export -passout pass:abc -certpbe PBE-SHA1-RC2-40 -keypbe PBE-SHA1-RC2-128 -macalg sha1 $(openssl_legacy)
diff --git a/ell/dbus.c b/ell/dbus.c
index 7fa5c18..bcd9869 100644
--- a/ell/dbus.c
+++ b/ell/dbus.c
@@ -181,7 +181,7 @@
if (l_queue_isempty(dbus->message_queue))
return false;
- /* Only continue sending messges if the connection is ready */
+ /* Only continue sending messages if the connection is ready */
return dbus->is_ready;
}
diff --git a/ell/strv.c b/ell/strv.c
index b7bf23c..e22fc1f 100644
--- a/ell/strv.c
+++ b/ell/strv.c
@@ -261,7 +261,7 @@
/**
* l_strv_append:
* @str_array: a %NULL terminated array of strings or %NULL
- * @str: A string to be appened at the end of @str_array
+ * @str: A string to be appended at the end of @str_array
*
* Returns: New %NULL terminated array of strings with @str added
*/
diff --git a/ell/util.h b/ell/util.h
index da0741d..e44ec69 100644
--- a/ell/util.h
+++ b/ell/util.h
@@ -44,7 +44,7 @@
})
/*
- * If ELL headers and iterfaces end up getting compiled in a C++
+ * If ELL headers and interfaces end up getting compiled in a C++
* environment, even though ELL itself is a C source based and is
* compiled as such, certain assignments may be flagged by the C++
* compiler as errors or warnings. The following portable casts should
diff --git a/tools/certchain-verify.c b/tools/certchain-verify.c
index e8ff346..c3a3826 100644
--- a/tools/certchain-verify.c
+++ b/tools/certchain-verify.c
@@ -48,7 +48,7 @@
ca_certs = l_pem_load_certificate_list(argv[1]);
if (!ca_certs) {
- fprintf(stderr, "Unable to load CA certifiates\n");
+ fprintf(stderr, "Unable to load CA certificates\n");
goto free_certchain;
}
diff --git a/unit/test-dhcp.c b/unit/test-dhcp.c
index b1e3cb0..34faae4 100644
--- a/unit/test-dhcp.c
+++ b/unit/test-dhcp.c
@@ -655,7 +655,7 @@
return len;
}
-static int fake_transport_l2_send(struct dhcp_transport *transprot,
+static int fake_transport_l2_send(struct dhcp_transport *transport,
uint32_t saddr, uint16_t sport,
uint32_t daddr, uint16_t dport,
const uint8_t *dest_mac,