From 9a51fba71c5fa7082c331e1a78a98638d9aa06cf Mon Sep 17 00:00:00 2001 From: James Peach Date: Tue, 7 Nov 2006 17:18:00 +0000 Subject: r19626: Coalesce usage of DUMP_CORE. Fix formatting on chdir error message in core dump path. --- source/lib/fault.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'source/lib') diff --git a/source/lib/fault.c b/source/lib/fault.c index dc8c276d02c..b632a5c82fa 100644 --- a/source/lib/fault.c +++ b/source/lib/fault.c @@ -160,12 +160,13 @@ void dump_core_setup(const char *progname) exit(1); } +#if DUMP_CORE if (*corepath != '\0') { /* The chdir might fail if we dump core before we finish * processing the config file. */ if (chdir(corepath) != 0) { - DEBUG(0, ("unable to change to %s", corepath)); + DEBUG(0, ("unable to change to %s\n", corepath)); DEBUGADD(0, ("refusing to dump core\n")); exit(1); } @@ -182,5 +183,9 @@ void dump_core_setup(const char *progname) #endif abort(); + +#else /* DUMP_CORE */ + exit(1); +#endif /* DUMP_CORE */ } -- cgit