Fix typos

This commit is contained in:
practicalswift 2018-01-27 23:21:14 +01:00 committed by Christian Decker
parent d36fa33c9b
commit 9f47c0431a
3 changed files with 5 additions and 5 deletions

View File

@ -96,7 +96,7 @@ channel_fail_htlc,,id,u64
# If this is non-zero length, you need to wrap this and pass it on.
channel_fail_htlc,,len,u16
channel_fail_htlc,,error_pkt,len*u8
# If it errcode is != 0, it's a local error, otherwise we're passing thru.
# If it errcode is != 0, it's a local error, otherwise we're passing through.
channel_fail_htlc,,errcode,u16
# If errcode & UPDATE, this says which outgoing channel failed.
channel_fail_htlc,,which_channel,struct short_channel_id

1 # Received and sent funding_locked
96 channel_ping,1011
97 channel_ping,,num_pong_bytes,u16
98 channel_ping,,len,u16
99 channel_ping_reply,1111
100 channel_ping_reply,,totlen,u16
101 # When we receive funding_locked.
102 channel_got_funding_locked,1019

View File

@ -160,7 +160,7 @@ static char *code_to_regex(const char *code, size_t len, bool escape)
after_nl = false;
continue;
}
/* Fall thru. */
/* Fall through. */
case '.':
case '$':
case '^':
@ -172,7 +172,7 @@ static char *code_to_regex(const char *code, size_t len, bool escape)
case '|':
if (escape)
*(p++) = '\\';
/* Fall thru */
/* Fall through */
default:
*(p++) = code[i];
}

View File

@ -47,11 +47,11 @@ static void set_pubkey(struct pubkey *key)
#define with_field(p, field) \
(upto_field((p), field) + sizeof((p)->field))
/* Equal upto this field */
/* Equal up to this field */
#define eq_upto(p1, p2, field) \
(memcmp((p1), (p2), upto_field(p1, field)) == 0)
/* Equal upto and including this field */
/* Equal up to and including this field */
#define eq_with(p1, p2, field) \
(memcmp((p1), (p2), with_field(p1, field)) == 0)