aboutsummaryrefslogtreecommitdiffstats
path: root/src/vppinfra
diff options
context:
space:
mode:
authorArtem Glazychev <artem.glazychev@xored.com>2023-09-07 14:16:56 +0700
committerDamjan Marion <dmarion@0xa5.net>2023-09-13 12:15:17 +0000
commit986ca97311daef6faf3d53f3fd3ab90390f17a36 (patch)
treec096dbb7afc32e2add74560f32ed316f088757cc /src/vppinfra
parent63335e4898868113ede66fdc186c9585e51178c4 (diff)
vppinfra: fix setns typo
Type: fix Signed-off-by: Artem Glazychev <artem.glazychev@xored.com> Change-Id: Ib8eb70336956bc2e8d0454f3c1f2c62ec98cb009
Diffstat (limited to 'src/vppinfra')
-rw-r--r--src/vppinfra/socket.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vppinfra/socket.c b/src/vppinfra/socket.c
index ef0eaaee0a3..b13675bc6f8 100644
--- a/src/vppinfra/socket.c
+++ b/src/vppinfra/socket.c
@@ -732,7 +732,7 @@ done:
#if CLIB_LINUX
if (netns_fd != -1)
{
- setns (CLONE_NEWNET, netns_fd);
+ setns (netns_fd, CLONE_NEWNET);
close (netns_fd);
}
#endif