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},