From 6092ca3337b028e9ee3b63b1b7051ac3c740550c Mon Sep 17 00:00:00 2001 From: gamemann Date: Wed, 15 Dec 2021 20:51:50 +0000 Subject: [PATCH] Add correct line breaks into help menu. --- src/xdpfw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/xdpfw.c b/src/xdpfw.c index 3574683..4936fc7 100644 --- a/src/xdpfw.c +++ b/src/xdpfw.c @@ -309,8 +309,8 @@ int main(int argc, char *argv[]) { fprintf(stdout, "Usage:\n" \ "--config -c => Config file location (default is /etc/xdpfw/xdpfw.conf).\n" \ - "--offload -o => Tries to load the XDP program in hardware/offload mode." \ - "--skb -s => Force the XDP program to load with SKB mode instead of DRV." \ + "--offload -o => Tries to load the XDP program in hardware/offload mode.\n" \ + "--skb -s => Force the XDP program to load with SKB mode instead of DRV.\n" \ "--time -t => How long to run the program for in seconds before exiting. 0 or not set = infinite.\n" \ "--list -l => Print config details including filters (this will exit program after done).\n" \ "--help -h => Print help menu.\n");