Mercurial > noffle
comparison src/post.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 | 28488e0e3630 |
| children | bf290632d29e |
comparison
equal
deleted
inserted
replaced
| 196:60a70c16d79c | 197:24d4cd032da5 |
|---|---|
| 1 /* | 1 /* |
| 2 post.c | 2 post.c |
| 3 | 3 |
| 4 $Id: post.c 310 2001-10-20 13:23:46Z bears $ | 4 $Id: post.c 316 2001-10-31 11:44:53Z bears $ |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 #if HAVE_CONFIG_H | 7 #if HAVE_CONFIG_H |
| 8 #include <config.h> | 8 #include <config.h> |
| 9 #endif | 9 #endif |
| 11 #include <errno.h> | 11 #include <errno.h> |
| 12 #include <pwd.h> | 12 #include <pwd.h> |
| 13 #include <stdio.h> | 13 #include <stdio.h> |
| 14 #include <sys/types.h> | 14 #include <sys/types.h> |
| 15 #include <unistd.h> | 15 #include <unistd.h> |
| 16 #include "post.h" | |
| 17 #include <string.h> | 16 #include <string.h> |
| 18 #include "common.h" | 17 #include "common.h" |
| 19 #include "configfile.h" | 18 #include "configfile.h" |
| 20 #include "content.h" | 19 #include "content.h" |
| 21 #include "control.h" | 20 #include "control.h" |
| 23 #include "group.h" | 22 #include "group.h" |
| 24 #include "itemlist.h" | 23 #include "itemlist.h" |
| 25 #include "log.h" | 24 #include "log.h" |
| 26 #include "outgoing.h" | 25 #include "outgoing.h" |
| 27 #include "over.h" | 26 #include "over.h" |
| 27 #include "portable.h" | |
| 28 #include "post.h" | |
| 28 #include "protocol.h" | 29 #include "protocol.h" |
| 29 #include "util.h" | 30 #include "util.h" |
| 30 #include "portable.h" | |
| 31 | 31 |
| 32 #define BEGIN_SIG "-- " | 32 #define BEGIN_SIG "-- " |
| 33 #define SIG_FILE "/.signature" | 33 #define SIG_FILE "/.signature" |
| 34 | 34 |
| 35 struct OverInfo | 35 struct OverInfo |
