diff --git a/CHANGELOG b/CHANGELOG index 438e182..57cc82a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,4 +1,4 @@ -?/?/2006 autofs-5.0.1 rc3 +4/1/2007 autofs-5.0.1 rc3 ------------------------- - fix handling of autofs specific mount options. - fix include check full patch for file map of same name. @@ -53,6 +53,7 @@ - update location validation to accept "_" (Fabio Olive Leite). - set close-on-exec flag on open sockets. - fix nonstrict multi-mount handling. +- reduce thread stack to less excessive size. 1/9/2006 autofs-5.0.1 rc2 ------------------------- diff --git a/daemon/automount.c b/daemon/automount.c index 5628425..ae61f02 100644 --- a/daemon/automount.c +++ b/daemon/automount.c @@ -1587,7 +1587,7 @@ int main(int argc, char *argv[]) #ifdef _POSIX_THREAD_ATTR_STACKSIZE if (pthread_attr_setstacksize( - &thread_attr, PTHREAD_STACK_MIN*128)) { + &thread_attr, PTHREAD_STACK_MIN*64)) { crit(LOGOPT_ANY, "%s: failed to set stack size thread attribute!", program);