diff options
author | Werner Koch <[email protected]> | 2005-07-22 16:28:40 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2005-07-22 16:28:40 +0000 |
commit | a486501c0b848b3de9bc355135f1ffec953e057f (patch) | |
tree | e5525626969c81afd367e72502f2830a229c3a97 /g10/keyserver.c | |
parent | * options.h, g10.c (main), keyedit.c (keyedit_menu): Use --interactive (diff) | |
download | gnupg-a486501c0b848b3de9bc355135f1ffec953e057f.tar.gz gnupg-a486501c0b848b3de9bc355135f1ffec953e057f.zip |
* gpg.sgml (http):
* g10.c, options.h: New option --exit-on-status-write-error.
* status.c (write_status_text): Make use of this option.
Diffstat (limited to '')
-rw-r--r-- | g10/keyserver.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/g10/keyserver.c b/g10/keyserver.c index e3c2391d9..2ce03d41e 100644 --- a/g10/keyserver.c +++ b/g10/keyserver.c @@ -904,8 +904,16 @@ keyserver_spawn(int action,STRLIST list,KEYDB_SEARCH_DESC *desc, PATH to be GNUPG_LIBEXECDIR. All this is not that meaningful on Unix-like systems (since we're going to give a full path to gpgkeys_foo), but on W32 it prevents loading any DLLs from - directories in %PATH%. */ - set_exec_path(libexecdir); + directories in %PATH%. + + After some more thinking about this we came to the conclusion + that it is better to load the helpers from the directory where + the program of this process lives. Fortunately Windows provides + a way to retrieve this and our get_libexecdir function has been + modified to return just this. Setting the exec-path is not + anymore required. + set_exec_path(libexecdir); + */ #else if(opt.exec_path_set) { |