diff options
author | Randal L. Schwartz <merlyn@stonehenge.com> | 2005-10-26 01:29:09 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-10-26 02:37:59 +0200 |
commit | 979e32fa1483a32faa4ec331e29b357e5eb5ef25 (patch) | |
tree | 6c600a8ffa79242d7b16eea9065182770ea7cb30 /daemon.c | |
parent | Revert recent fetch-pack/upload-pack updates. (diff) | |
download | git-979e32fa1483a32faa4ec331e29b357e5eb5ef25.tar.xz git-979e32fa1483a32faa4ec331e29b357e5eb5ef25.zip |
fix daemon.c to compile on OpenBSD
I can confirm that the following patch lets the current origin
compile on OpenBSD. If you could apply this until you sort out the
rest of the namespace issue, I would be happy. Thanks.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'daemon.c')
-rw-r--r-- | daemon.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,3 @@ -#include "cache.h" -#include "pkt-line.h" #include <signal.h> #include <sys/wait.h> #include <sys/socket.h> @@ -9,6 +7,8 @@ #include <netinet/in.h> #include <arpa/inet.h> #include <syslog.h> +#include "pkt-line.h" +#include "cache.h" static int log_syslog; static int verbose; |