aboutsummaryrefslogtreecommitdiff
path: root/src/app
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2020-10-01 19:32:32 -0400
committerRoger Dingledine <arma@torproject.org>2020-10-01 19:32:32 -0400
commit4f114f59e62397fba98b17e1394adfa29e3de78b (patch)
treec48c09eaee4fd9814f3f9c24220a78b0584c4410 /src/app
parente68770719ef4d3d3b83398715b1e10391ab6a1b4 (diff)
downloadtor-4f114f59e62397fba98b17e1394adfa29e3de78b.tar.gz
tor-4f114f59e62397fba98b17e1394adfa29e3de78b.zip
fix typos
no actual changes
Diffstat (limited to 'src/app')
-rw-r--r--src/app/config/resolve_addr.c4
-rw-r--r--src/app/main/main.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/app/config/resolve_addr.c b/src/app/config/resolve_addr.c
index b37707d2da..b811a68b8c 100644
--- a/src/app/config/resolve_addr.c
+++ b/src/app/config/resolve_addr.c
@@ -652,12 +652,12 @@ static const size_t fn_address_table_auth_len =
* method_out is set to RESOLVED_ADDR_RESOLVED and hostname_out is set
* to the resolved hostname. On failure to resolve, an error is returned.
*
- * If no given Address, fallback to the local hostname (see section 2).
+ * If no given Address, fallback to the network interface (see section 2).
*
* 2. Look at the network interface.
*
* Attempt to find the first public usable address from the list of
- * network interface returned by the OS.
+ * network interfaces returned by the OS.
*
* On failure, we attempt to look at the local hostname (3).
*
diff --git a/src/app/main/main.c b/src/app/main/main.c
index 31a4f141ad..ff530c0ad0 100644
--- a/src/app/main/main.c
+++ b/src/app/main/main.c
@@ -298,7 +298,7 @@ process_signal(int sig)
}
#ifdef _WIN32
-/** Activate SIGINT on reciving a control signal in console */
+/** Activate SIGINT on receiving a control signal in console. */
static BOOL WINAPI
process_win32_console_ctrl(DWORD ctrl_type)
{