diff options
author | 2019-04-27 22:08:58 +0000 | |
---|---|---|
committer | 2019-04-27 22:08:58 +0000 | |
commit | d615bee370b777fc1883c0d9d3346f8ca9b94dbe (patch) | |
tree | cf7e7cb4dd253c4957070dbb402f983767827997 | |
parent | keep the grammatical structure of the options list consistent; (diff) | |
download | wireguard-openbsd-d615bee370b777fc1883c0d9d3346f8ca9b94dbe.tar.xz wireguard-openbsd-d615bee370b777fc1883c0d9d3346f8ca9b94dbe.zip |
It's timer_pid not timeout_pid
There since introduction in 1.18 (2013).
OK halex
-rw-r--r-- | distrib/miniroot/dot.profile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/miniroot/dot.profile b/distrib/miniroot/dot.profile index 49f3aa480c8..dc31f214c53 100644 --- a/distrib/miniroot/dot.profile +++ b/distrib/miniroot/dot.profile @@ -1,4 +1,4 @@ -# $OpenBSD: dot.profile,v 1.43 2019/04/24 15:59:22 florian Exp $ +# $OpenBSD: dot.profile,v 1.44 2019/04/27 22:08:58 kn Exp $ # $NetBSD: dot.profile,v 1.1 1995/12/18 22:54:43 pk Exp $ # # Copyright (c) 2009 Kenneth R. Westerback @@ -86,7 +86,7 @@ __EOT # Set trap handlers to remove timer if the shell is interrupted, # killed or about to exit. - trap 'kill $timeout_pid 2>/dev/null' EXIT + trap 'kill $timer_pid 2>/dev/null' EXIT trap 'exit 1' INT trap 'timeout=true' TERM |