=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/add.c,v retrieving revision 1.88 retrieving revision 1.89 diff -u -r1.88 -r1.89 --- src/usr.bin/cvs/add.c 2008/01/31 10:15:05 1.88 +++ src/usr.bin/cvs/add.c 2008/01/31 10:17:47 1.89 @@ -1,4 +1,4 @@ -/* $OpenBSD: add.c,v 1.88 2008/01/31 10:15:05 tobias Exp $ */ +/* $OpenBSD: add.c,v 1.89 2008/01/31 10:17:47 tobias Exp $ */ /* * Copyright (c) 2006 Joris Vink * Copyright (c) 2005, 2006 Xavier Santolaria @@ -128,7 +128,7 @@ if (cf->file_type == CVS_DIR) { (void)xsnprintf(entry, CVS_ENT_MAXLINELEN, - "D/%s/////", cf->file_name); + "D/%s////", cf->file_name); entlist = cvs_ent_open(cf->file_wd); cvs_ent_add(entlist, entry); @@ -243,7 +243,7 @@ p = xmalloc(CVS_ENT_MAXLINELEN); (void)xsnprintf(p, CVS_ENT_MAXLINELEN, - "D/%s/////", cf->file_name); + "D/%s////", cf->file_name); entlist = cvs_ent_open(cf->file_wd); cvs_ent_add(entlist, p); cvs_ent_close(entlist, ENT_SYNC);