=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/update.c,v retrieving revision 1.86 retrieving revision 1.87 diff -c -r1.86 -r1.87 *** src/usr.bin/cvs/update.c 2007/01/17 17:54:50 1.86 --- src/usr.bin/cvs/update.c 2007/01/18 09:26:19 1.87 *************** *** 1,4 **** ! /* $OpenBSD: update.c,v 1.86 2007/01/17 17:54:50 joris Exp $ */ /* * Copyright (c) 2006 Joris Vink * --- 1,4 ---- ! /* $OpenBSD: update.c,v 1.87 2007/01/18 09:26:19 xsa Exp $ */ /* * Copyright (c) 2006 Joris Vink * *************** *** 151,157 **** if (cf->file_status == DIR_CREATE && build_dirs == 1) { cvs_mkpath(cf->file_path); if ((cf->fd = open(cf->file_path, O_RDONLY)) == -1) ! fatal("cvs_update_enterdir: %s", strerror(errno)); entry = xmalloc(CVS_ENT_MAXLINELEN); l = snprintf(entry, CVS_ENT_MAXLINELEN, "D/%s////", --- 151,158 ---- if (cf->file_status == DIR_CREATE && build_dirs == 1) { cvs_mkpath(cf->file_path); if ((cf->fd = open(cf->file_path, O_RDONLY)) == -1) ! fatal("cvs_update_enterdir: `%s': %s", ! cf->file_path, strerror(errno)); entry = xmalloc(CVS_ENT_MAXLINELEN); l = snprintf(entry, CVS_ENT_MAXLINELEN, "D/%s////",