summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorunknown <monty@hundin.mysql.fi>2001-11-28 22:47:58 +0200
committerunknown <monty@hundin.mysql.fi>2001-11-28 22:47:58 +0200
commitc90f67fb06430e16e3c37d1420591ac7419a40c4 (patch)
tree26618c7253118930cf17acdcc699e83953795d9b /tools
parentcaa13ea3e7abd946915e5526680edab46d9f460f (diff)
downloadmariadb-git-c90f67fb06430e16e3c37d1420591ac7419a40c4.tar.gz
Extended manual section about MySQL states
Docs/manual.texi: Extended section about MySQL states. client/get_password.c: Use stderr instead of stdout when asking for password tests/mail_to_db.pl: Small cleanup tools/mysqlmanager.c: Removed warning
Diffstat (limited to 'tools')
-rw-r--r--tools/mysqlmanager.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/mysqlmanager.c b/tools/mysqlmanager.c
index 31df66d10c6..c2011696776 100644
--- a/tools/mysqlmanager.c
+++ b/tools/mysqlmanager.c
@@ -342,17 +342,17 @@ static void handle_sigterm(int sig __attribute__((unused)))
exit(0);
}
+#ifdef DO_STACKTRACE
static void handle_segfault(int sig)
{
if (in_segfault)
exit(1);
in_segfault=1;
fprintf(errfp,"Got fatal signal %d\n",sig);
-#ifdef DO_STACKTRACE
print_stacktrace();
-#endif
exit(1);
}
+#endif
static void handle_sigpipe(int __attribute__((unused)) sig)
{