diff options
author | Werner Koch <[email protected]> | 2013-08-01 17:54:11 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2013-08-01 17:54:11 +0000 |
commit | ca6fe88c0068f8d45ef39df0fc7b161998a91fe9 (patch) | |
tree | 749400e66aad49e99533d00ff95f63884bf9206f | |
parent | agent: Include missing prototype. (diff) | |
download | gnupg-ca6fe88c0068f8d45ef39df0fc7b161998a91fe9.tar.gz gnupg-ca6fe88c0068f8d45ef39df0fc7b161998a91fe9.zip |
w32: Fix recent patch 9ff72e4.
* common/homedir.c (check_portable_app): Fix the name of the control
file.
Diffstat (limited to '')
-rw-r--r-- | common/homedir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/homedir.c b/common/homedir.c index 9fec78fc3..faf9787d6 100644 --- a/common/homedir.c +++ b/common/homedir.c @@ -258,7 +258,7 @@ check_portable_app (const char *dir) log_error ("required binary '%s' is not installed\n", fname); else { - strcpy (fname + strlen (fname) - 3, ".ctl"); + strcpy (fname + strlen (fname) - 3, "ctl"); if (!access (fname, F_OK)) { /* gpgconf.ctl file found. Record this fact. */ |