diff options
author | kn <kn@cvs.openbsd.org> | 2019-04-27 22:08:59 +0000 |
---|---|---|
committer | kn <kn@cvs.openbsd.org> | 2019-04-27 22:08:59 +0000 |
commit | c142f67b0717a902cdb2dce33e646a43bcec0dc7 (patch) | |
tree | 2ded955e4480f068789e9dc8f717613f1edbed21 /distrib/miniroot | |
parent | 9c97594e174a9676ad05da646bfeb30d52a0b42e (diff) |
It's timer_pid not timeout_pid
There since introduction in 1.18 (2013).
OK halex
Diffstat (limited to 'distrib/miniroot')
-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 |