diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-05 09:38:53 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-11-05 09:38:53 +0000 |
commit | e1968947ae857c71ac38fff397389d3859baadc2 (patch) | |
tree | 357fab358051367d3e2ebedf5d9e7fc59c6863fa /bin/pax | |
parent | 61c3bdd3dbcc159bb104561d5ef9a28e75521035 (diff) |
mark a zone of signal races
Diffstat (limited to 'bin/pax')
-rw-r--r-- | bin/pax/pax.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bin/pax/pax.c b/bin/pax/pax.c index 0251c33421e..07484ea6b26 100644 --- a/bin/pax/pax.c +++ b/bin/pax/pax.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pax.c,v 1.17 2001/05/16 03:04:57 mickey Exp $ */ +/* $OpenBSD: pax.c,v 1.18 2001/11/05 09:38:52 deraadt Exp $ */ /* $NetBSD: pax.c,v 1.5 1996/03/26 23:54:20 mrg Exp $ */ /*- @@ -48,7 +48,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)pax.c 8.2 (Berkeley) 4/18/94"; #else -static char rcsid[] = "$OpenBSD: pax.c,v 1.17 2001/05/16 03:04:57 mickey Exp $"; +static char rcsid[] = "$OpenBSD: pax.c,v 1.18 2001/11/05 09:38:52 deraadt Exp $"; #endif #endif /* not lint */ @@ -323,6 +323,8 @@ sig_cleanup(which_sig) int which_sig; #endif { + /* XXX signal races */ + /* * restore modes and times for any dirs we may have created * or any dirs we may have read. Set vflag and vfpart so the user |