diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-08-06 20:09:23 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2004-08-06 20:09:23 +0000 |
commit | e8638a6aaf29391e0b8e167f14a45d5c50fd260a (patch) | |
tree | 9c74cb4bb8cc750d2ddc166375c21236f17bdfc8 | |
parent | 65f0dca1e45d5ece735ba051468012e45ca59ca1 (diff) |
Fix the SIGINT handler
-rw-r--r-- | usr.bin/cvs/cvsd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/cvsd.c b/usr.bin/cvs/cvsd.c index 8d7a20ec038..6a5b56fd912 100644 --- a/usr.bin/cvs/cvsd.c +++ b/usr.bin/cvs/cvsd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cvsd.c,v 1.4 2004/08/02 15:59:38 jfb Exp $ */ +/* $OpenBSD: cvsd.c,v 1.5 2004/08/06 20:09:22 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -111,6 +111,7 @@ sighup_handler(int signo) void sigint_handler(int signo) { + running = 0; } |