From 3504737de859fe68df97bc4aee72aa011a4fa45c Mon Sep 17 00:00:00 2001 From: Jeltz Date: Tue, 6 Sep 2022 17:18:51 +0200 Subject: [PATCH] =?UTF-8?q?Fix=20typo:=20saddr=20=E2=86=92=20daddr?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nftables.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nftables.ml b/nftables.ml index 33908db..f9044a8 100644 --- a/nftables.ml +++ b/nftables.ml @@ -25,7 +25,7 @@ module Payload = struct let to_string : type a. a t -> string = function | Saddr -> "saddr" - | Daddr -> "saddr" + | Daddr -> "daddr" end module Ipv6 = struct @@ -33,7 +33,7 @@ module Payload = struct let to_string : type a. a t -> string = function | Saddr -> "saddr" - | Daddr -> "saddr" + | Daddr -> "daddr" end type _ t =