diff options
author | Monty <monty@mariadb.org> | 2018-11-07 13:16:29 +0200 |
---|---|---|
committer | Monty <monty@mariadb.org> | 2018-12-09 20:49:05 +0200 |
commit | c82855d88272f0a1b95d0ad2b7abf804aeff8145 (patch) | |
tree | d21118e6caaf2f90e2df0a4a2780d7964caa349e /extra | |
parent | ae58cd6b87bf1f872093816691ebdd46bef50c7f (diff) | |
download | mariadb-git-c82855d88272f0a1b95d0ad2b7abf804aeff8145.tar.gz |
Changed some MySQL names in messages to MariaDB
- Remove obsolete documentation files
- Removed old obsolete information from some documentation files
Diffstat (limited to 'extra')
-rw-r--r-- | extra/perror.c | 6 | ||||
-rw-r--r-- | extra/resolve_stack_dump.c | 2 |
2 files changed, 4 insertions, 4 deletions
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); } diff --git a/extra/resolve_stack_dump.c b/extra/resolve_stack_dump.c index dbd9941141d..78a32298dab 100644 --- a/extra/resolve_stack_dump.c +++ b/extra/resolve_stack_dump.c @@ -75,7 +75,7 @@ static void print_version(void) static void usage() { print_version(); - printf("MySQL AB, by Sasha Pachev\n"); + printf("MariaDB Corporation, originally created by Sasha Pachev\n"); printf("This software comes with ABSOLUTELY NO WARRANTY\n\n"); printf("Resolve numeric stack strace dump into symbols.\n\n"); printf("Usage: %s [OPTIONS] symbols-file [numeric-dump-file]\n", |