aboutsummaryrefslogtreecommitdiffstats
path: root/scd/scdaemon.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2017-07-25 10:52:33 +0000
committerWerner Koch <[email protected]>2017-07-25 11:04:18 +0000
commit0ef50340ef68b2541d9a1aafa71f5400aef4dc7e (patch)
treec1820de11f6c1fce5ff79fa8c09a14966e1fc823 /scd/scdaemon.c
parentcommon: New functions gnupg_daemon_rootdir and gnupg_chdir. (diff)
downloadgnupg-0ef50340ef68b2541d9a1aafa71f5400aef4dc7e.tar.gz
gnupg-0ef50340ef68b2541d9a1aafa71f5400aef4dc7e.zip
w32: Also change the directory on daemon startup.
* agent/gpg-agent.c (main): Always to the chdir. * dirmngr/dirmngr.c (main): Ditto. * scd/scdaemon.c (main): Ditto. -- Note that only dirmngr did not call the chdir with --no-detach. thus we kept it this way. Tested gpg-agent by checking the properties shown by procexp. Gnupg-bug-id: 2670 Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to '')
-rw-r--r--scd/scdaemon.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scd/scdaemon.c b/scd/scdaemon.c
index bf3f42a0e..60d539ddd 100644
--- a/scd/scdaemon.c
+++ b/scd/scdaemon.c
@@ -908,6 +908,8 @@ main (int argc, char **argv )
sigaction (SIGPIPE, &sa, NULL);
}
+#endif /*!HAVE_W32_SYSTEM*/
+
if (gnupg_chdir (gnupg_daemon_rootdir ()))
{
log_error ("chdir to '%s' failed: %s\n",
@@ -915,8 +917,6 @@ main (int argc, char **argv )
exit (1);
}
-#endif /*!HAVE_W32_SYSTEM*/
-
handle_connections (fd);
close (fd);