=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/Attic/proto.c,v retrieving revision 1.83 retrieving revision 1.84 diff -c -r1.83 -r1.84 *** src/usr.bin/cvs/Attic/proto.c 2005/12/30 16:47:36 1.83 --- src/usr.bin/cvs/Attic/proto.c 2005/12/30 17:51:01 1.84 *************** *** 1,4 **** ! /* $OpenBSD: proto.c,v 1.83 2005/12/30 16:47:36 joris Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: proto.c,v 1.84 2005/12/30 17:51:01 reyk Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau * All rights reserved. *************** *** 220,226 **** } else if (cvs_subproc_pid == 0) { if ((dup2(infd[0], STDIN_FILENO) == -1) || (dup2(outfd[1], STDOUT_FILENO) == -1)) ! fatal("failed to setup standard streams for cvs server"); (void)close(infd[1]); (void)close(outfd[0]); --- 220,227 ---- } else if (cvs_subproc_pid == 0) { if ((dup2(infd[0], STDIN_FILENO) == -1) || (dup2(outfd[1], STDOUT_FILENO) == -1)) ! fatal("failed to setup standard streams " ! "for cvs server"); (void)close(infd[1]); (void)close(outfd[0]); *************** *** 610,616 **** "remote end does not support request `%s'", req->req_str); } ! return; } --- 611,617 ---- "remote end does not support request `%s'", req->req_str); } ! return; }