]> prime8.dev >> repos - ttyd.git/commitdiff
Fix signal name display
authorShuanglei Tao <tsl0922@gmail.com>
Mon, 8 Jan 2018 11:37:32 +0000 (19:37 +0800)
committerShuanglei Tao <tsl0922@gmail.com>
Mon, 8 Jan 2018 11:41:42 +0000 (19:41 +0800)
README.md
man/ttyd.1
man/ttyd.man.md
src/server.c

index da76e795ccdbbdd4780a34822d50c508526b3c1d..1b3da39b2cb92b24474557222a8bed42717ad5d0 100644 (file)
--- a/README.md
+++ b/README.md
@@ -82,7 +82,7 @@ OPTIONS:
     -c, --credential        Credential for Basic Authentication (format: username:password)
     -u, --uid               User id to run with
     -g, --gid               Group id to run with
-    -s, --signal            Signal to send to the command when exit it (default: SIGHUP)
+    -s, --signal            Signal to send to the command when exit it (default: 1, SIGHUP)
     -r, --reconnect         Time to reconnect for the client in seconds (default: 10)
     -R, --readonly          Do not allow clients to write to the TTY
     -t, --client-option     Send option to client (format: key=value), repeat to add more options
index 79512cad3b2193f3331b6dc8948f08874cbb38bb..86cfbe0ac0a9e55bc19a1a1cb49e6dc7834eea1b 100644 (file)
@@ -50,7 +50,7 @@ Cross platform: macOS, Linux, FreeBSD/OpenBSD, OpenWrt/LEDE, Windows
 
 .PP
 \-s, \-\-signal <signal string>
-      Signal to send to the command when exit it (default: 9, SIGHUP)
+      Signal to send to the command when exit it (default: 1, SIGHUP)
 
 .PP
 \-r, \-\-reconnect <seconds>
index d51fbeda52d1eb038b7a6030b1aad6fbf9db29c2..d2e5d2ebf02c9d0548525c4d9f21c3ecd410e1a9 100644 (file)
@@ -34,7 +34,7 @@ ttyd 1 "September 2016" ttyd "User Manual"
       Group id to run with
 
   -s, --signal <signal string>
-      Signal to send to the command when exit it (default: 9, SIGHUP)
+      Signal to send to the command when exit it (default: 1, SIGHUP)
 
   -r, --reconnect <seconds>
       Time to reconnect for the client in seconds (default: 10)
index 3fcd2377253f4ec88a49b19af3f20c0e7c3e7710..c1a17a547e479bf17bf96cbc2e285b3d588c1a06 100644 (file)
@@ -57,7 +57,7 @@ void print_help() {
                     "    -c, --credential        Credential for Basic Authentication (format: username:password)\n"
                     "    -u, --uid               User id to run with\n"
                     "    -g, --gid               Group id to run with\n"
-                    "    -s, --signal            Signal to send to the command when exit it (default: 9, SIGHUP)\n"
+                    "    -s, --signal            Signal to send to the command when exit it (default: 1, SIGHUP)\n"
                     "    -r, --reconnect         Time to reconnect for the client in seconds (default: 10)\n"
                     "    -R, --readonly          Do not allow clients to write to the TTY\n"
                     "    -t, --client-option     Send option to client (format: key=value), repeat to add more options\n"
@@ -286,7 +286,7 @@ main(int argc, char **argv) {
                 int sig = get_sig(optarg);
                 if (sig > 0) {
                     server->sig_code = sig;
-                    get_sig_name(sig, server->sig_name, sizeof(server->sig_code));
+                    get_sig_name(sig, server->sig_name, sizeof(server->sig_name));
                 } else {
                     fprintf(stderr, "ttyd: invalid signal: %s\n", optarg);
                     return -1;