Mercurial > noffle
diff src/database.c @ 197:24d4cd032da5 noffle
[svn] * AUTHORS,INSTALL,NEWS,README,TODO,docs/NOTES,src/client.c,src/protocol.c,
src/protocol.h,src/server.c: Merge with latest 1.0 branch. I do not
intend to do any further merges from the 1.0 branch; future changes to
1.0 should be carried over by hand if necessary.
* src/configfile.c,src/content.c,src/control.c,src/database.c,
src/dynamicstring.c,src/fetch.c,src/filter.c,src/group.c,
src/itemlist.c,src/lock.c,src/outgoing.c,src/over.c,src/post.c,
src/pseudo.c,src/request.c,src/util.c: Minor includes rearrangement.
author | bears |
---|---|
date | Wed, 31 Oct 2001 11:44:53 +0000 |
parents | fed1334d766b |
children | fbff73fe5b40 |
line wrap: on
line diff
--- a/src/database.c Tue Oct 30 13:55:53 2001 +0000 +++ b/src/database.c Wed Oct 31 11:44:53 2001 +0000 @@ -1,7 +1,7 @@ /* database.c - $Id: database.c 300 2001-08-05 08:24:22Z bears $ + $Id: database.c 316 2001-10-31 11:44:53Z bears $ Uses GNU gdbm library. Using Berkeley db (included in libc6) was cumbersome. It is based on Berkeley db 1.85, which has severe bugs @@ -14,7 +14,6 @@ #endif #include <stdio.h> -#include "database.h" #include <ctype.h> #include <errno.h> #include <fcntl.h> @@ -23,6 +22,7 @@ #include <sys/types.h> #include <sys/stat.h> #include "configfile.h" +#include "database.h" #include "itemlist.h" #include "log.h" #include "protocol.h"