From f3878b954a280c9ade5dbfc940ce80cddfcbae14 Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Mon, 31 Jan 2022 15:35:52 +0100 Subject: [PATCH] use ascii chars Signed-off-by: Steffen Jaeckel --- src/auth.c | 2 +- src/stanza.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/auth.c b/src/auth.c index 6a2ce91..e3e8543 100644 --- a/src/auth.c +++ b/src/auth.c @@ -1279,7 +1279,7 @@ int _handle_component_auth(xmpp_conn_t *conn) return XMPP_EINT; } - /* Feed the session id and passphrase to the algorithm. + /* Feed the session id and passphrase to the algorithm. * We need to compute SHA1(session_id + passphrase) */ crypto_SHA1_Init(&mdctx); diff --git a/src/stanza.c b/src/stanza.c index 60df711..ee70116 100644 --- a/src/stanza.c +++ b/src/stanza.c @@ -1213,8 +1213,8 @@ int xmpp_stanza_del_attribute(xmpp_stanza_t *stanza, const char *name) } /** Create a stanza object in reply to another. - * This function makes a copy of a stanza object with the attribute “to” set - * its original “from”. + * This function makes a copy of a stanza object with the attribute "to" set + * its original "from". * The stanza will have a reference count of one, so the caller does not * need to clone it. *