diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-11-29 17:52:34 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-11-29 17:52:34 -0800 |
commit | ec3f7d5d0f3676aa9634ee30f8c9e55893a8c505 (patch) | |
tree | b51c8a2a902b671d0336a61276c0ae8f9b423836 /daemon.c | |
parent | 1aa6583cc257f3b0570cbc25c89a54f0e4417ef6 (diff) | |
parent | 25fe66f84cea9c2e0a7f6b53180542784b94485a (diff) | |
download | git-ec3f7d5d0f3676aa9634ee30f8c9e55893a8c505.tar.gz |
Merge branch 'md/interix'
* md/interix:
Interix: add configure checks
add support for the SUA layer (interix; windows)
Conflicts:
git-compat-util.h
Diffstat (limited to 'daemon.c')
-rw-r--r-- | daemon.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -13,6 +13,10 @@ #define NI_MAXSERV 32 #endif +#ifdef NO_INITGROUPS +#define initgroups(x, y) (0) /* nothing */ +#endif + static int log_syslog; static int verbose; static int reuseaddr; |