diff options
author | unknown <iggy@rolltop.ignatz42.dyndns.org> | 2006-09-28 13:58:53 -0400 |
---|---|---|
committer | unknown <iggy@rolltop.ignatz42.dyndns.org> | 2006-09-28 13:58:53 -0400 |
commit | adc93e992ac8031da502a2b6fed216d1cbdeaa10 (patch) | |
tree | 81bef1cad490ec4e283f6c9141ae926dfeb0145f /sql/stacktrace.c | |
parent | 6dc972b89991e1ee467a3ce466ee6722abaa4f70 (diff) | |
download | mariadb-git-adc93e992ac8031da502a2b6fed216d1cbdeaa10.tar.gz |
Bug #21449 How to Resolve Stack Trace URL in MySQLD error log is incorrect.
sql/stacktrace.c:
URL is case sensitive
Diffstat (limited to 'sql/stacktrace.c')
-rw-r--r-- | sql/stacktrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/stacktrace.c b/sql/stacktrace.c index 43f35c452f7..a2fe2ab88f1 100644 --- a/sql/stacktrace.c +++ b/sql/stacktrace.c @@ -222,7 +222,7 @@ terribly wrong...\n"); fprintf(stderr, "Stack trace seems successful - bottom reached\n"); end: - fprintf(stderr, "Please read http://dev.mysql.com/doc/mysql/en/Using_stack_trace.html and follow instructions on how to resolve the stack trace. Resolved\n\ + fprintf(stderr, "Please read http://dev.mysql.com/doc/mysql/en/using-stack-trace.html and follow instructions on how to resolve the stack trace. Resolved\n\ stack trace is much more helpful in diagnosing the problem, so please do \n\ resolve it\n"); } |