=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/import.c,v retrieving revision 1.65 retrieving revision 1.66 diff -c -r1.65 -r1.66 *** src/usr.bin/cvs/import.c 2007/01/19 08:21:45 1.65 --- src/usr.bin/cvs/import.c 2007/01/20 01:07:51 1.66 *************** *** 1,4 **** ! /* $OpenBSD: import.c,v 1.65 2007/01/19 08:21:45 xsa Exp $ */ /* * Copyright (c) 2006 Joris Vink * --- 1,4 ---- ! /* $OpenBSD: import.c,v 1.66 2007/01/20 01:07:51 niallo Exp $ */ /* * Copyright (c) 2006 Joris Vink * *************** *** 274,280 **** cvs_log(LP_TRACE, "import_update(%s)", cf->file_path); ! rev = rcs_translate_tag(import_branch, cf->file_rcs); if ((brev = rcsnum_parse(import_branch)) == NULL) fatal("import_update: rcsnum_parse failed"); --- 274,281 ---- cvs_log(LP_TRACE, "import_update(%s)", cf->file_path); ! if ((rev = rcs_translate_tag(import_branch, cf->file_rcs)) == NULL) ! fatal("import_update: could not translate tag `%s'", import_branch); if ((brev = rcsnum_parse(import_branch)) == NULL) fatal("import_update: rcsnum_parse failed");