slash/backslash conversion
This commit is contained in:
parent
9db5d05376
commit
3a8df5d469
@ -96,9 +96,19 @@ _gpgme_get_gpg_path (void)
|
|||||||
if (!gpg_program) {
|
if (!gpg_program) {
|
||||||
gpg_program = read_w32_registry_string ( NULL,
|
gpg_program = read_w32_registry_string ( NULL,
|
||||||
"Software\\GNU\\GnuPG", "gpgProgram" );
|
"Software\\GNU\\GnuPG", "gpgProgram" );
|
||||||
if (!gpg_program)
|
if (gpg_program) {
|
||||||
|
int i;
|
||||||
|
|
||||||
|
DEBUG1 ("found gpgProgram in registry: `%s'", gpgProgram );
|
||||||
|
for (i=0; gpg_program[i]; s++) {
|
||||||
|
if (gpg_program[i] == '/')
|
||||||
|
gpg_program[i] == '\\';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else {
|
||||||
gpg_program = GPG_PATH;
|
gpg_program = GPG_PATH;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return gpg_program;
|
return gpg_program;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user