From: Tim Gates Date: Fri, 27 Nov 2020 22:01:58 +0000 (+1100) Subject: docs: fix simple typo, seperately -> separately X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=1884300f016027cc3427e3f84c1acfbace5561da;p=thirdparty%2Ftvheadend.git docs: fix simple typo, seperately -> separately There is a small typo in src/descrambler/capmt.c. Should read `separately` rather than `seperately`. --- diff --git a/src/descrambler/capmt.c b/src/descrambler/capmt.c index d2f22f3f6..3dd392dca 100644 --- a/src/descrambler/capmt.c +++ b/src/descrambler/capmt.c @@ -1311,7 +1311,7 @@ capmt_msg_size(capmt_t *capmt, sbuf_t *sb, int offset) return 4 + 12 + adapter_byte; else if (oscam_new && cmd == DMX_SET_FILTER) /* when using network protocol the dmx_sct_filter_params fields are added */ - /* seperately to avoid padding problems, so we substract 2 bytes: */ + /* separately to avoid padding problems, so we substract 2 bytes: */ return 4 + 2 + 60 + adapter_byte + (capmt_oscam_netproto(capmt) ? -2 : 0); else if (oscam_new && cmd == DMX_STOP) return 4 + 4 + adapter_byte;