From bdb04f922004ff8433591f138e40c09722836c45 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 8 Dec 2002 08:25:05 +0000 Subject: Update. * scripts/output-format.sed: Fix bug in one of the s expressions which used / for one too many things. --- nptl/pt-system.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'nptl/pt-system.c') diff --git a/nptl/pt-system.c b/nptl/pt-system.c index 2572c47..d02f451 100644 --- a/nptl/pt-system.c +++ b/nptl/pt-system.c @@ -27,12 +27,9 @@ int system (const char *line) { - int oldtype; - int result; + int oldtype = CANCEL_ASYNC (); - CANCEL_ASYNC (oldtype); - - result = __libc_system (line); + int result = __libc_system (line); CANCEL_RESET (oldtype); -- cgit v1.1