diff options
author | Marek Vasut <marex@denx.de> | 2022-05-01 18:43:55 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-06-16 18:51:07 -0400 |
commit | 3c07d639ede998cb682c284d1ffc4a3ddb062e13 (patch) | |
tree | ad1b79d1af1e6595910bbce43e56b8e30bbf44f9 | |
parent | 7e41abad9be46351b83c30ceefe55999a5376ece (diff) | |
download | u-boot-3c07d639ede998cb682c284d1ffc4a3ddb062e13.zip u-boot-3c07d639ede998cb682c284d1ffc4a3ddb062e13.tar.gz u-boot-3c07d639ede998cb682c284d1ffc4a3ddb062e13.tar.bz2 |
net: Fix discuss discard typo
Replace discuss with discard, that is what happens with packet with
incorrect checksum. Fix the typo.
Fixes: 4b37fd146bb ("Convert CONFIG_UDP_CHECKSUM to Kconfig")
Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Ramon Fried <rfried.dev@gmail.com>
Cc: Simon Glass <sjg@chromium.org>
-rw-r--r-- | net/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/Kconfig b/net/Kconfig index 964a4fe..564ea8b 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -158,7 +158,7 @@ config UDP_CHECKSUM default y if SANDBOX help Enable this to verify the checksum on UDP packets. If the checksum - is wrong then the packet is discussed and an error is shown, like + is wrong then the packet is discarded and an error is shown, like "UDP wrong checksum 29374a23 30ff3826" config BOOTP_SERVERIP |