summaryrefslogtreecommitdiffstats
path: root/g10/photoid.c
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2002-07-24 09:40:53 +0200
committerWerner Koch <wk@gnupg.org>2002-07-24 09:40:53 +0200
commit35bf53d4bbf1090123631fc8f53b9edcb9568e75 (patch)
treeb37b281f10b963660f808851f1fc9c9d784b8249 /g10/photoid.c
parent* import.c (parse_import_options), export.c (parse_export_options): Fix (diff)
downloadgnupg2-35bf53d4bbf1090123631fc8f53b9edcb9568e75.tar.xz
gnupg2-35bf53d4bbf1090123631fc8f53b9edcb9568e75.zip
Forgot to commit this:
* photoid.c (get_default_photo_command): Also use __MINGW32__ instead of HAVE_DOSISH_SYSTEM.
Diffstat (limited to 'g10/photoid.c')
-rw-r--r--g10/photoid.c2
1 files changed, 1 insertions, 1 deletions
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));