aboutgitcodebugslistschat
diff options
context:
space:
mode:
authorDavid Gibson <david@gibson.dropbear.id.au>2025-10-24 16:48:33 +1100
committerStefano Brivio <sbrivio@redhat.com>2025-10-27 23:02:54 +0100
commit7bb150c0c3d24edeb98557137178fb03ab255521 (patch)
tree3226860d6ca8eab238a806584423d9d89d21ac87
parentb2ccb6d4271b1fcecfa08892d1c57d81edc0f6c1 (diff)
downloadpasst-7bb150c0c3d24edeb98557137178fb03ab255521.tar
passt-7bb150c0c3d24edeb98557137178fb03ab255521.tar.gz
passt-7bb150c0c3d24edeb98557137178fb03ab255521.tar.bz2
passt-7bb150c0c3d24edeb98557137178fb03ab255521.tar.lz
passt-7bb150c0c3d24edeb98557137178fb03ab255521.tar.xz
passt-7bb150c0c3d24edeb98557137178fb03ab255521.tar.zst
passt-7bb150c0c3d24edeb98557137178fb03ab255521.zip
fwd: Fix misspelling
Mea culpa. Fixes: 1daf6f461522 ("conf, fwd: Make ephemeral port logic more flexible") Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rw-r--r--fwd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fwd.c b/fwd.c
index 250cf56..31b6142 100644
--- a/fwd.c
+++ b/fwd.c
@@ -27,7 +27,7 @@
#include "lineread.h"
#include "flow_table.h"
-/* Empheral port range: values from RFC 6335 */
+/* Ephemeral port range: values from RFC 6335 */
static in_port_t fwd_ephemeral_min = (1 << 15) + (1 << 14);
static in_port_t fwd_ephemeral_max = NUM_PORTS - 1;