summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2014-08-18 22:33:01 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2014-08-18 22:33:01 +0200
commitd39193123e57fe38532f8c3ab3029acf1e45ae92 (patch)
tree1cc9715cfc5909c5548939bf3646e62fb1d97184
parent50d9aa23342f8a9bc6a87ace12578054eeff36fd (diff)
downloadfastd-d39193123e57fe38532f8c3ab3029acf1e45ae92.tar
fastd-d39193123e57fe38532f8c3ab3029acf1e45ae92.zip
Fix a few comment typos
-rw-r--r--src/fastd.h2
-rw-r--r--src/peer.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/fastd.h b/src/fastd.h
index ccc99b0..9b1dc29 100644
--- a/src/fastd.h
+++ b/src/fastd.h
@@ -90,7 +90,7 @@ struct fastd_protocol {
void (*handshake_handle)(fastd_socket_t *sock, const fastd_peer_address_t *local_addr, const fastd_peer_address_t *remote_addr, fastd_peer_t *peer, const fastd_handshake_t *handshake, const fastd_method_info_t *method);
#ifdef WITH_DYNAMIC_PEERS
- /** Handles an asynchrounous on-verify command return */
+ /** Handles an asynchronous on-verify command return */
void (*handle_verify_return)(fastd_peer_t *peer, fastd_socket_t *sock, const fastd_peer_address_t *local_addr, const fastd_peer_address_t *remote_addr, const fastd_method_info_t *method, const void *protocol_data, bool ok);
#endif
diff --git a/src/peer.h b/src/peer.h
index 4229296..75c7b6b 100644
--- a/src/peer.h
+++ b/src/peer.h
@@ -93,7 +93,7 @@ struct fastd_peer_config {
const char *config_source_dir; /**< The directory this peer's configuration was loaded from */
- bool enabled; /**< Speficies if this peer was disabled because of a configuration error */
+ bool enabled; /**< Specifies if this peer was disabled because of a configuration error */
char *name; /**< The peer's name */
fastd_remote_config_t *remotes; /**< A linked list of the peer's remote entries */