mirror of
git://git.gnupg.org/gnupg.git
synced 2025-02-23 20:08:04 +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:
parent
7a81947753
commit
994ab24b4b
@ -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>
|
2007-03-08 Werner Koch <wk@g10code.com>
|
||||||
|
|
||||||
* plaintext.c (handle_plaintext): Add two extra fflush for stdout.
|
* plaintext.c (handle_plaintext): Add two extra fflush for stdout.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
/* keyserver.c - generic keyserver code
|
/* keyserver.c - generic keyserver code
|
||||||
* Copyright (C) 2001, 2002, 2003, 2004, 2005,
|
* Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006,
|
||||||
* 2006 Free Software Foundation, Inc.
|
* 2007 Free Software Foundation, Inc.
|
||||||
*
|
*
|
||||||
* This file is part of GnuPG.
|
* This file is part of GnuPG.
|
||||||
*
|
*
|
||||||
@ -41,6 +41,14 @@
|
|||||||
#include "keyserver-internal.h"
|
#include "keyserver-internal.h"
|
||||||
#include "util.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
|
struct keyrec
|
||||||
{
|
{
|
||||||
KEYDB_SEARCH_DESC desc;
|
KEYDB_SEARCH_DESC desc;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user