diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2007-05-26 23:50:47 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2007-05-26 23:50:47 +0000 |
commit | ac3e878702665897bf95ea5f9cee0a0bce11ea48 (patch) | |
tree | 3ced3139cfcf27e55563620f522030be6f9ee909 /usr.bin/cvs | |
parent | ef0b9acb6ff85b97cc28b523035522ff9fa4b56c (diff) |
It is too complicated to tell a client that an internal failure
happened in fatal(). If that behavior is desired, please tell the
client before calling fatal().
OK niallo@
Diffstat (limited to 'usr.bin/cvs')
-rw-r--r-- | usr.bin/cvs/fatal.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/cvs/fatal.c b/usr.bin/cvs/fatal.c index 94c288516e1..1b88b4717f2 100644 --- a/usr.bin/cvs/fatal.c +++ b/usr.bin/cvs/fatal.c @@ -1,4 +1,4 @@ -/* $OpenBSD: fatal.c,v 1.10 2007/05/26 20:13:45 ray Exp $ */ +/* $OpenBSD: fatal.c,v 1.11 2007/05/26 23:50:46 ray Exp $ */ /* * Copyright (c) 2002 Markus Friedl. All rights reserved. * @@ -49,9 +49,6 @@ fatal(const char *fmt,...) cvs_cleanup(); - if (cvs_server_active) - cvs_server_send_response("error"); - end: exit(1); } |