diff options
author | David Shaw <[email protected]> | 2004-12-20 05:19:09 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2004-12-20 05:19:09 +0000 |
commit | 07250279e7ec1086ca224fcc96c4a639c0fc2df6 (patch) | |
tree | 20de8c8f26600886c4323b1ae4c523a1785849de /g10/passphrase.c | |
parent | * keygen.c (keygen_get_std_prefs): Set reference count when creating the (diff) | |
download | gnupg-07250279e7ec1086ca224fcc96c4a639c0fc2df6.tar.gz gnupg-07250279e7ec1086ca224fcc96c4a639c0fc2df6.zip |
* keyedit.c (keyedit_menu): Invisible alias "passwd" as "password".
* passphrase.c: Don't check for __CYGWIN__, so it is treated as a
unix-like system.
* options.h, g10.c (main), textfilter.c (standard): Use new option
--rfc2440-text to determine whether to filter "<space>\t\r\n" or just
"\r\n" before canonicalizing text line endings. Default to
"<space>\t\r\n".
Diffstat (limited to '')
-rw-r--r-- | g10/passphrase.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/passphrase.c b/g10/passphrase.c index 1a477288d..e4bf37959 100644 --- a/g10/passphrase.c +++ b/g10/passphrase.c @@ -30,8 +30,8 @@ #include <sys/socket.h> #include <sys/un.h> #endif -#if defined (_WIN32) || defined (__CYGWIN32__) -# include <windows.h> +#if defined (_WIN32) +#include <windows.h> #endif #include <errno.h> #ifdef HAVE_LOCALE_H |