summaryrefslogtreecommitdiff
path: root/usr.bin/cvs/fatal.c
diff options
context:
space:
mode:
authorRay Lai <ray@cvs.openbsd.org>2007-05-26 23:50:47 +0000
committerRay Lai <ray@cvs.openbsd.org>2007-05-26 23:50:47 +0000
commitac3e878702665897bf95ea5f9cee0a0bce11ea48 (patch)
tree3ced3139cfcf27e55563620f522030be6f9ee909 /usr.bin/cvs/fatal.c
parentef0b9acb6ff85b97cc28b523035522ff9fa4b56c (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/fatal.c')
-rw-r--r--usr.bin/cvs/fatal.c5
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);
}