summaryrefslogtreecommitdiff
path: root/extra
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2019-04-29 15:05:25 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2019-04-29 15:11:06 +0300
commit092602ac9b650f921ec5380866d17d740f0eedb4 (patch)
tree535b0ea97049ceeeeb38790fda2d9a454d457e9e /extra
parent5fb4c0a8a877077e2835a9b39ac6e670fa4eaaac (diff)
downloadmariadb-git-092602ac9b650f921ec5380866d17d740f0eedb4.tar.gz
MDEV-14130 InnoDB messages should not refer to the MySQL 5.7 manual
In InnoDB error messages, replace the hyperlink URLs to point to the MariaDB knowledge base.
Diffstat (limited to 'extra')
-rw-r--r--extra/innochecksum.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/extra/innochecksum.cc b/extra/innochecksum.cc
index 52e909ebbeb..5c4ad084c3c 100644
--- a/extra/innochecksum.cc
+++ b/extra/innochecksum.cc
@@ -1,6 +1,6 @@
/*
Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved.
- Copyright (c) 2014, 2017, MariaDB Corporation.
+ Copyright (c) 2014, 2019, MariaDB Corporation.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -1231,7 +1231,7 @@ static struct my_option innochecksum_options[] = {
{"verbose", 'v', "Verbose (prints progress every 5 seconds).",
&verbose, &verbose, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
#ifndef DBUG_OFF
- {"debug", '#', "Output debug log. See " REFMAN "dbug-package.html",
+ {"debug", '#', "Output debug log. See https://mariadb.com/kb/en/library/creating-a-trace-file/",
&dbug_setting, &dbug_setting, 0, GET_STR, OPT_ARG, 0, 0, 0, 0, 0, 0},
#endif /* !DBUG_OFF */
{"count", 'c', "Print the count of pages in the file and exits.",
@@ -1298,7 +1298,8 @@ static void usage(void)
"[-p <page>] [-i] [-v] [-a <allow mismatches>] [-n] "
"[-C <strict-check>] [-w <write>] [-S] [-D <page type dump>] "
"[-l <log>] [-l] [-m <merge pages>] <filename or [-]>\n", my_progname);
- printf("See " REFMAN "innochecksum.html for usage hints.\n");
+ printf("See https://mariadb.com/kb/en/library/innochecksum/"
+ " for usage hints.\n");
my_print_help(innochecksum_options);
my_print_variables(innochecksum_options);
}