1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-02-22 19:58:29 +01:00

* keyserver.c: Windows Vista doesn't grok X_OK and so fails access()

tests.  Previous versions interpreted X_OK as F_OK anyway, so we'll
just use F_OK directly.
This commit is contained in:
David Shaw 2007-03-14 13:15:50 +00:00
parent 7a81947753
commit 994ab24b4b
2 changed files with 16 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2007-03-14 David Shaw <dshaw@jabberwocky.com>
* keyserver.c: Windows Vista doesn't grok X_OK and so fails
access() tests. Previous versions interpreted X_OK as F_OK
anyway, so we'll just use F_OK directly.
2007-03-08 Werner Koch <wk@g10code.com>
* plaintext.c (handle_plaintext): Add two extra fflush for stdout.

View File

@ -1,6 +1,6 @@
/* keyserver.c - generic keyserver code
* Copyright (C) 2001, 2002, 2003, 2004, 2005,
* 2006 Free Software Foundation, Inc.
* Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006,
* 2007 Free Software Foundation, Inc.
*
* This file is part of GnuPG.
*
@ -41,6 +41,14 @@
#include "keyserver-internal.h"
#include "util.h"
#ifdef HAVE_W32_SYSTEM
/* It seems Vista doesn't grok X_OK and so fails access() tests.
Previous versions interpreted X_OK as F_OK anyway, so we'll just
use F_OK directly. */
#undef X_OK
#define X_OK F_OK
#endif /* HAVE_W32_SYSTEM */
struct keyrec
{
KEYDB_SEARCH_DESC desc;