=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/add.c,v retrieving revision 1.101 retrieving revision 1.102 diff -c -r1.101 -r1.102 *** src/usr.bin/cvs/add.c 2008/06/14 00:55:31 1.101 --- src/usr.bin/cvs/add.c 2008/06/14 02:34:27 1.102 *************** *** 1,4 **** ! /* $OpenBSD: add.c,v 1.101 2008/06/14 00:55:31 tobias Exp $ */ /* * Copyright (c) 2006 Joris Vink * Copyright (c) 2005, 2006 Xavier Santolaria --- 1,4 ---- ! /* $OpenBSD: add.c,v 1.102 2008/06/14 02:34:27 tobias Exp $ */ /* * Copyright (c) 2006 Joris Vink * Copyright (c) 2005, 2006 Xavier Santolaria *************** *** 349,355 **** if (cf->file_rcs != NULL) { head = rcs_head_get(cf->file_rcs); if (head == NULL) ! fatal("RCS head empty or missing in %s\n", cf->file_rcs->rf_path); rcsnum_tostr(head, revbuf, sizeof(revbuf)); rcsnum_free(head); --- 349,355 ---- if (cf->file_rcs != NULL) { head = rcs_head_get(cf->file_rcs); if (head == NULL) ! fatal("RCS head empty or missing in %s", cf->file_rcs->rf_path); rcsnum_tostr(head, revbuf, sizeof(revbuf)); rcsnum_free(head); *************** *** 374,380 **** /* Restore the file. */ head = rcs_head_get(cf->file_rcs); if (head == NULL) ! fatal("RCS head empty or missing in %s\n", cf->file_rcs->rf_path); cvs_checkout_file(cf, head, NULL, 0); rcsnum_free(head); --- 374,380 ---- /* Restore the file. */ head = rcs_head_get(cf->file_rcs); if (head == NULL) ! fatal("RCS head empty or missing in %s", cf->file_rcs->rf_path); cvs_checkout_file(cf, head, NULL, 0); rcsnum_free(head);