1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-07 23:27:48 +02:00

w32: Fix recent patch 9ff72e4.

* common/homedir.c (check_portable_app): Fix the name of the control
file.
This commit is contained in:
Werner Koch 2013-08-01 19:54:11 +02:00
parent ef6a6d973c
commit ca6fe88c00

View File

@ -258,7 +258,7 @@ check_portable_app (const char *dir)
log_error ("required binary '%s' is not installed\n", fname); log_error ("required binary '%s' is not installed\n", fname);
else else
{ {
strcpy (fname + strlen (fname) - 3, ".ctl"); strcpy (fname + strlen (fname) - 3, "ctl");
if (!access (fname, F_OK)) if (!access (fname, F_OK))
{ {
/* gpgconf.ctl file found. Record this fact. */ /* gpgconf.ctl file found. Record this fact. */