From: SAITOH Masanobu Date: Tue, 29 Sep 2020 06:30:27 +0000 (+0100) Subject: Fix a typo in a comment X-Git-Tag: v9.3.0~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26123706b5cb0f06d17454ed08ba7d3751ffa929;p=thirdparty%2Fdhcpcd.git Fix a typo in a comment --- diff --git a/src/dhcp-common.c b/src/dhcp-common.c index 98b07582..4f0dbd63 100644 --- a/src/dhcp-common.c +++ b/src/dhcp-common.c @@ -615,7 +615,7 @@ dhcp_optlen(const struct dhcp_opt *opt, size_t dl) } /* Trim any extra data. - * Maybe we need a settng to reject DHCP options with extra data? */ + * Maybe we need a setting to reject DHCP options with extra data? */ if (opt->type & OT_ARRAY) return (ssize_t)(dl - (dl % sz)); return (ssize_t)sz;