From 727caf9d4ae014f8ee5409e43cf78ebe11fda8b3 Mon Sep 17 00:00:00 2001 From: Philipp Wollermann Date: Sun, 19 Nov 2023 21:39:23 +0900 Subject: [PATCH] Fix typo (SIKGILL -> SIGKILL). --- README.md | 2 +- cmdline.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c69f7fa..3015110 100644 --- a/README.md +++ b/README.md @@ -537,7 +537,7 @@ The command-line options should be self-explanatory, while the proto-buf config --disable_tsc Disable rdtsc and rdtscp instructions. WARNING: To make it effective, you also need to forbid `prctl(PR_SET_TSC, PR_TSC_ENABLE, ...)` in seccomp rules! (x86 and x86_64 only). Dynamic binaries produced by GCC seem to rely on RDTSC, but static ones should work. --forward_signals - Forward fatal signals to the child process instead of always using SIKGILL. + Forward fatal signals to the child process instead of always using SIGKILL. Examples: Wait on a port 31337 for connections, and run /bin/sh diff --git a/cmdline.cc b/cmdline.cc index a13c69e..acab963 100644 --- a/cmdline.cc +++ b/cmdline.cc @@ -169,7 +169,7 @@ static const struct custom_option custom_opts[] = { { { "macvlan_vs_ma", required_argument, nullptr, 0x705 }, "MAC-address of the 'vs' interface (e.g. \"ba:ad:ba:be:45:00\")" }, { { "macvlan_vs_mo", required_argument, nullptr, 0x706 }, "Mode of the 'vs' interface. Can be either 'private', 'vepa', 'bridge' or 'passthru' (default: 'private')" }, { { "disable_tsc", no_argument, nullptr, 0x707 }, "Disable rdtsc and rdtscp instructions. WARNING: To make it effective, you also need to forbid `prctl(PR_SET_TSC, PR_TSC_ENABLE, ...)` in seccomp rules! (x86 and x86_64 only). Dynamic binaries produced by GCC seem to rely on RDTSC, but static ones should work." }, - { { "forward_signals", no_argument, nullptr, 0x708 }, "Forward fatal signals to the child process instead of always using SIKGILL." }, + { { "forward_signals", no_argument, nullptr, 0x708 }, "Forward fatal signals to the child process instead of always using SIGKILL." }, }; // clang-format on