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/perror.c | |
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/perror.c')
-rw-r--r-- | extra/perror.c | 6 |
1 files changed, 3 insertions, 3 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); } |