diff options
author | Dmitry V. Levin <ldv@altlinux.org> | 2020-12-12 19:50:12 +0300 |
---|---|---|
committer | Mark Wielaard <mark@klomp.org> | 2020-12-12 18:06:28 +0100 |
commit | 0f0e6c5372250692cdaf35913143d33fcc60d17e (patch) | |
tree | 92e07e31d62adeaf49e652c49085f544610fef90 /debuginfod/debuginfod-client.c | |
parent | adbf4bafc2398e90a90a4e98b4ce2e05614c617b (diff) | |
download | elfutils-0f0e6c5372250692cdaf35913143d33fcc60d17e.tar.gz |
debuginfod: fix spelling typos in error diagnostics and comments
Initalize -> Initialize
Unsucessful -> Unsuccessful
expession -> expression
incompatiblity -> incompatibility
Signed-off-by: Dmitry V. Levin <ldv@altlinux.org>
Diffstat (limited to 'debuginfod/debuginfod-client.c')
-rw-r--r-- | debuginfod/debuginfod-client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debuginfod/debuginfod-client.c b/debuginfod/debuginfod-client.c index a99f3c14..de26af5b 100644 --- a/debuginfod/debuginfod-client.c +++ b/debuginfod/debuginfod-client.c @@ -751,7 +751,7 @@ debuginfod_query_server (debuginfod_client *c, /* thereafter, goto out1 on error. */ - /* Initalize handle_data with default values. */ + /* Initialize handle_data with default values. */ for (int i = 0; i < num_urls; i++) { data[i].handle = NULL; @@ -954,7 +954,7 @@ debuginfod_query_server (debuginfod_client *c, if (msg->data.result != CURLE_OK) { - /* Unsucessful query, determine error code. */ + /* Unsuccessful query, determine error code. */ switch (msg->data.result) { case CURLE_COULDNT_RESOLVE_HOST: rc = -EHOSTUNREACH; break; // no NXDOMAIN |