From 984860f922a02acec1ef0cd080900f037dbbeada Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Thu, 15 Dec 2005 20:25:37 +0000 Subject: r12267: Try to avoid segfault in kerberos libs, because we talloc_free()'ed the old event context in the standard process modal child. Andrew Bartlett (This used to be commit 0f52a9ab071c181c7f764adc8be83e162e649931) --- source4/smbd/process_standard.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source4/smbd/process_standard.c') diff --git a/source4/smbd/process_standard.c b/source4/smbd/process_standard.c index bbc0aa4c7e..5149ab55b6 100644 --- a/source4/smbd/process_standard.c +++ b/source4/smbd/process_standard.c @@ -29,6 +29,9 @@ #include "smb_server/smb_server.h" #include "system/filesys.h" +/* For sepecifiying event context to GSSAPI below */ +#include "heimdal/lib/gssapi/gssapi_locl.h" + /* called when the process model is selected */ @@ -94,6 +97,9 @@ static void standard_accept_connection(struct event_context *ev, DEBUG(0,("standard_accept_connection: tdb_reopen_all failed.\n")); } + /* Hack to ensure that GSSAPI uses the right event context */ + gssapi_krb5_init_ev(ev2); + /* Ensure that the forked children do not expose identical random streams */ set_need_random_reseed(); -- cgit