diff options
author | Moritz Schulte <[email protected]> | 2004-10-01 23:11:43 +0000 |
---|---|---|
committer | Moritz Schulte <[email protected]> | 2004-10-01 23:11:43 +0000 |
commit | d9fdd238fe01b73a11298f5543a96b5425ccda66 (patch) | |
tree | 5bdec60262961b226cbd18fb82f74671ec4ba0f1 | |
parent | Use xtrymalloc instead of gcry_malloc. (diff) | |
download | gnupg-d9fdd238fe01b73a11298f5543a96b5425ccda66.tar.gz gnupg-d9fdd238fe01b73a11298f5543a96b5425ccda66.zip |
Use a sane stacksize (had unintenionally commited wrong stack size).
-rw-r--r-- | agent/gpg-agent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/gpg-agent.c b/agent/gpg-agent.c index a02ddba00..d8facaba4 100644 --- a/agent/gpg-agent.c +++ b/agent/gpg-agent.c @@ -1285,7 +1285,7 @@ handle_connections (int listen_fd, int listen_fd_ssh) tattr = pth_attr_new(); pth_attr_set (tattr, PTH_ATTR_JOINABLE, 0); - pth_attr_set (tattr, PTH_ATTR_STACK_SIZE, 64); + pth_attr_set (tattr, PTH_ATTR_STACK_SIZE, 256*1024); pth_attr_set (tattr, PTH_ATTR_NAME, "gpg-agent"); sigemptyset (&sigs ); |