From: Dave Wallace Date: Tue, 23 Jul 2019 17:09:23 +0000 (-0400) Subject: udp: fix typo in udp connectinon flags X-Git-Tag: v20.01-rc0~126 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F09%2F20809%2F3;p=vpp.git udp: fix typo in udp connectinon flags Type: fix Fixes: 3b726197 Change-Id: Ib515f0995e5c837349ebcad5f63fbd1b2a197e13 Signed-off-by: Dave Wallace --- diff --git a/src/vnet/udp/udp.h b/src/vnet/udp/udp.h index f8eefdac8a1..5ff613b568a 100644 --- a/src/vnet/udp/udp.h +++ b/src/vnet/udp/udp.h @@ -38,7 +38,7 @@ typedef enum { UDP_CONN_F_CONNECTED = 1 << 0, /**< connected mode */ UDP_CONN_F_OWNS_PORT = 1 << 1, /**< port belong to conn (UDPC) */ - UDP_CONN_F_CLOSING = 2 << 2, /**< conn closed with data */ + UDP_CONN_F_CLOSING = 1 << 2, /**< conn closed with data */ } udp_conn_flags_t; typedef struct