Roxen.git/
server/
base_server/
module.pike
Branch:
Tag:
Non-build tags
All tags
No tags
2000-02-10
2000-02-10 03:33:29 by Martin Stjernholm <mast@lysator.liu.se>
8c863c93d49b3bd35c5c8be4cd3d3ed6253f8077 (
11
lines) (+
7
/-
4
)
[
Show
|
Annotate
]
Branch:
5.2
Don't _do_call_outs() in module_dependencies().
Rev: server/base_server/module.pike:1.78
1:
-
/* $Id: module.pike,v 1.
77
2000/02/
09
20
:
18
:
04
nilsson
Exp $ */
+
/* $Id: module.pike,v 1.
78
2000/02/
10
03
:
33
:
29
mast
Exp $ */
#include <module.h> #include <request_trace.h>
53:
int|void now) { if(configuration) configuration->add_modules( modules, now );
-
mixed err;
-
if (err = catch (_do_call_outs()))
-
report_error ("Error doing call outs:\n" + describe_backtrace (err));
+
//
Shouldn't
do call outs here, since things assume call outs aren't
+
// done until all modules are loaded. /mast
+
//
mixed err;
+
//
if (err = catch (_do_call_outs()))
+
//
report_error ("Error doing call outs:\n" + describe_backtrace (err));
return 1; }