diff options
author | ulim <a.sporto+bee@gmail.com> | 2008-08-04 16:45:24 +0200 |
---|---|---|
committer | ulim <a.sporto+bee@gmail.com> | 2008-08-04 16:45:24 +0200 |
commit | 8661caad555f4306cf36ee37979a7637b05d5cd4 (patch) | |
tree | 7e4a7c3d6a700610dd31d109508b07caa3253902 /storage_text.c | |
parent | 4ac647dbcef152bebde7209f7c9cbbf8a5e0fc37 (diff) | |
parent | 718e05f842c1af043eb4efded8b0afe429377f70 (diff) |
merged in upstream r410.
Only conflict was the correction of jabber normalization which I had already done.
Diffstat (limited to 'storage_text.c')
-rw-r--r-- | storage_text.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/storage_text.c b/storage_text.c index 5ee6438d..78f7e3bd 100644 --- a/storage_text.c +++ b/storage_text.c @@ -26,6 +26,14 @@ #define BITLBEE_CORE #include "bitlbee.h" #include "crypting.h" +#ifdef _WIN32 +# define umask _umask +# define mode_t int +#endif + +#ifndef F_OK +#define F_OK 0 +#endif static void text_init (void) { |