From 80d4cca6f4fa7b4efbad28a2b43248f6be952f7c Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Wed, 17 Jan 1996 14:54:44 +0000 Subject: [PATCH] Function dirs_rmdir uses dict_delete. --- index/dirs.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/index/dirs.c b/index/dirs.c index f0a5687..7d99db5 100644 --- a/index/dirs.c +++ b/index/dirs.c @@ -4,7 +4,10 @@ * Sebastian Hammer, Adam Dickmeiss * * $Log: dirs.c,v $ - * Revision 1.4 1995-11-30 08:34:27 adam + * Revision 1.5 1996-01-17 14:54:44 adam + * Function dirs_rmdir uses dict_delete. + * + * Revision 1.4 1995/11/30 08:34:27 adam * Started work on commit facility. * Changed a few malloc/free to xmalloc/xfree. * @@ -132,12 +135,10 @@ void dirs_mkdir (struct dirs_info *p, const char *src, int ctime) void dirs_rmdir (struct dirs_info *p, const char *src) { char path[256]; - char info[2]; sprintf (path, "%s%s", p->prefix, src); logf (LOG_DEBUG, "dirs_rmdir %s", path); - info[0] = 'r'; - dict_insert (p->dict, path, 1, info); + dict_delete (p->dict, path); } void dirs_add (struct dirs_info *p, const char *src, int sysno, int ctime) -- 1.7.10.4