aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmar Polo <op@omarpolo.com>2021-04-20 09:53:33 +0000
committerOmar Polo <op@omarpolo.com>2021-04-20 09:53:33 +0000
commit5d1474a5618d5bc4745316b13311dee91d076e6b (patch)
treeac6f44e24d23195d0165e4d7458f56ffa1166bcd
parent3841a3693094ae7cc3cfd4f80da7f463e2756bcc (diff)
typo in comment
-rw-r--r--gmid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gmid.c b/gmid.c
index 928b1a6..8d56941 100644
--- a/gmid.c
+++ b/gmid.c
@@ -538,7 +538,7 @@ main(int argc, char **argv)
/* Linux seems to call the event handlers even when we're
* doing a sigwait. These dummy handlers is here to avoid
- * being terminated on SIGHUP, SIGTERM or SIGINFO. */
+ * being terminated on SIGHUP, SIGINT or SIGTERM. */
signal(SIGHUP, dummy_handler);
signal(SIGINT, dummy_handler);
signal(SIGTERM, dummy_handler);