diff options
author | Werner Koch <[email protected]> | 2002-07-24 07:40:53 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2002-07-24 07:40:53 +0000 |
commit | 35bf53d4bbf1090123631fc8f53b9edcb9568e75 (patch) | |
tree | b37b281f10b963660f808851f1fc9c9d784b8249 | |
parent | * import.c (parse_import_options), export.c (parse_export_options): Fix (diff) | |
download | gnupg-35bf53d4bbf1090123631fc8f53b9edcb9568e75.tar.gz gnupg-35bf53d4bbf1090123631fc8f53b9edcb9568e75.zip |
Forgot to commit this:
* photoid.c (get_default_photo_command): Also use __MINGW32__
instead of HAVE_DOSISH_SYSTEM.
Diffstat (limited to '')
-rw-r--r-- | g10/ChangeLog | 3 | ||||
-rw-r--r-- | g10/photoid.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog index 969283543..99acde15f 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -128,6 +128,9 @@ 2002-07-01 Werner Koch <[email protected]> + * photoid.c (get_default_photo_command): Also use __MINGW32__ + instead of HAVE_DOSISH_SYSTEM. + * encode.c (encode_symmetric): Do not use the new encryption code. 2002-06-30 Werner Koch <[email protected]> diff --git a/g10/photoid.c b/g10/photoid.c index 091fe0c8b..138ecd6ca 100644 --- a/g10/photoid.c +++ b/g10/photoid.c @@ -221,7 +221,7 @@ char *image_type_to_string(byte type,int style) #if !defined(FIXED_PHOTO_VIEWER) && !defined(DISABLE_PHOTO_VIEWER) static const char *get_default_photo_command(void) { -#if defined(HAVE_DOSISH_SYSTEM) +#if defined(__MINGW32__) OSVERSIONINFO osvi; memset(&osvi,0,sizeof(osvi)); |