=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/rcs/co.c,v retrieving revision 1.108 retrieving revision 1.109 diff -c -r1.108 -r1.109 *** src/usr.bin/rcs/co.c 2007/06/30 08:23:49 1.108 --- src/usr.bin/rcs/co.c 2007/07/03 00:56:23 1.109 *************** *** 1,4 **** ! /* $OpenBSD: co.c,v 1.108 2007/06/30 08:23:49 xsa Exp $ */ /* * Copyright (c) 2005 Joris Vink * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: co.c,v 1.109 2007/07/03 00:56:23 ray Exp $ */ /* * Copyright (c) 2005 Joris Vink * All rights reserved. *************** *** 525,531 **** * checkout_file_has_diffs() * * Check for diffs between the working file and its current revision. ! * Same return values as rcs_diffreg() */ static int checkout_file_has_diffs(RCSFILE *rfp, RCSNUM *frev, const char *dst) --- 525,531 ---- * checkout_file_has_diffs() * * Check for diffs between the working file and its current revision. ! * Same return values as diffreg() */ static int checkout_file_has_diffs(RCSFILE *rfp, RCSNUM *frev, const char *dst) *************** *** 550,556 **** rcs_buf_empty(bp); diff_format = D_RCSDIFF; ! ret = rcs_diffreg(dst, tempfile, bp, 0); rcs_buf_free(bp); unlink(tempfile); --- 550,556 ---- rcs_buf_empty(bp); diff_format = D_RCSDIFF; ! ret = diffreg(dst, tempfile, bp, 0); rcs_buf_free(bp); unlink(tempfile);