diff options
author | Roger Dingledine <arma@torproject.org> | 2018-02-07 12:22:29 -0500 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2018-02-07 12:22:29 -0500 |
commit | a7440d9c9df1141a5ff52c1358bc28a8bb27bea3 (patch) | |
tree | eab3a60021db7ade469173cb0c4c6076368b0dd0 /src/or/channelpadding.c | |
parent | 78382d557ab3da0b11f4fbda829f463067fc808f (diff) | |
download | tor-a7440d9c9df1141a5ff52c1358bc28a8bb27bea3.tar.gz tor-a7440d9c9df1141a5ff52c1358bc28a8bb27bea3.zip |
more fixes for typos, grammar, whitespace, etc
some of these ought to have been noticed by the "misspell" tool,
so if anybody is debugging it, here are some bug reports :)
Diffstat (limited to 'src/or/channelpadding.c')
-rw-r--r-- | src/or/channelpadding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/channelpadding.c b/src/or/channelpadding.c index 70a906d232..5da3009e67 100644 --- a/src/or/channelpadding.c +++ b/src/or/channelpadding.c @@ -69,7 +69,7 @@ static int consensus_nf_pad_single_onion; /** * This macro tells us if either end of the channel is connected to a client. * (If we're not a server, we're definitely a client. If the channel thinks - * its a client, use that. Then finally verify in the consensus). + * it's a client, use that. Then finally verify in the consensus). */ #define CHANNEL_IS_CLIENT(chan, options) \ (!public_server_mode((options)) || channel_is_client(chan) || \ |