From c82855d88272f0a1b95d0ad2b7abf804aeff8145 Mon Sep 17 00:00:00 2001 From: Monty Date: Wed, 7 Nov 2018 13:16:29 +0200 Subject: Changed some MySQL names in messages to MariaDB - Remove obsolete documentation files - Removed old obsolete information from some documentation files --- extra/perror.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'extra/perror.c') diff --git a/extra/perror.c b/extra/perror.c index bd62401c8b2..49b1318cbb2 100644 --- a/extra/perror.c +++ b/extra/perror.c @@ -87,7 +87,7 @@ static void usage(void) { print_version(); puts(ORACLE_WELCOME_COPYRIGHT_NOTICE("2000")); - printf("Print a description for a system error code or a MySQL error code.\n"); + printf("Print a description for a system error code or a MariaDB error code.\n"); printf("If you want to get the error for a negative error code, you should use\n-- before the first error code to tell perror that there was no more options.\n\n"); printf("Usage: %s [OPTIONS] [ERRORCODE [ERRORCODE...]]\n",my_progname); my_print_help(my_long_options); @@ -336,7 +336,7 @@ int main(int argc,char *argv[]) { found= 1; if (verbose) - printf("MySQL error code %3d: %s\n", code, msg); + printf("MariaDB error code %3d: %s\n", code, msg); else puts(msg); } @@ -344,7 +344,7 @@ int main(int argc,char *argv[]) { found= 1; if (verbose) - printf("MySQL error code %3d (%s): %s\n", code, name, msg); + printf("MariaDB error code %3d (%s): %s\n", code, name, msg); else puts(msg); } -- cgit v1.2.1