From 2f3f9e7e86c2111d94da0cb3294c21f9c236725d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrien=20Gallou=C3=ABt?= Date: Sat, 20 Jul 2019 08:53:47 +0000 Subject: [PATCH] Update desc of show MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Adrien Gallouët --- README.md | 2 +- src/main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2d49170..2c6f266 100644 --- a/README.md +++ b/README.md @@ -75,7 +75,7 @@ Just run `glorytun` with no arguments to view the list of available commands: $ glorytun available commands: - show show all running tunnels + show show tunnel info bench start a crypto bench bind start a new tunnel set change tunnel properties diff --git a/src/main.c b/src/main.c index 83f19be..70c815b 100644 --- a/src/main.c +++ b/src/main.c @@ -75,7 +75,7 @@ main(int argc, char **argv) char *help; int (*call)(int, char **); } cmd[] = { - {"show", "show all running tunnels", gt_show}, + {"show", "show tunnel info", gt_show}, {"bench", "start a crypto bench", gt_bench}, {"bind", "start a new tunnel", gt_bind}, {"set", "change tunnel properties", gt_set},