diff options
author | luz.paz <luzpaz@users.noreply.github.com> | 2018-02-24 12:42:13 -0500 |
---|---|---|
committer | Sergey Vojtovich <svoj@mariadb.org> | 2018-04-05 15:26:57 +0400 |
commit | 3dd01669b41bfad75f4a785d6263eb0f729b0213 (patch) | |
tree | 5305ec00d62be464b111583d32618bf4c0371000 /dbug | |
parent | 7c689300317793d1396b7a24f86452882d3180c2 (diff) | |
download | mariadb-git-3dd01669b41bfad75f4a785d6263eb0f729b0213.tar.gz |
Misc. typos
Found via `codespell -i 3 -w --skip="./debian/po" -I ../mariadb-server-word-whitelist.txt ./cmake/ ./debian/ ./Docs/ ./include/ ./man/ ./plugin/ ./strings/`
Diffstat (limited to 'dbug')
-rw-r--r-- | dbug/dbug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbug/dbug.c b/dbug/dbug.c index dedc455147b..40620b5e9c6 100644 --- a/dbug/dbug.c +++ b/dbug/dbug.c @@ -315,7 +315,7 @@ static void DbugVfprintf(FILE *stream, const char* format, va_list args); #undef EXISTS #if !defined(HAVE_ACCESS) -#define EXISTS(pathname) (FALSE) /* Assume no existance */ +#define EXISTS(pathname) (FALSE) /* Assume no existence */ #define Writable(name) (TRUE) #else #define EXISTS(pathname) (access(pathname, F_OK) == 0) @@ -2180,7 +2180,7 @@ static BOOLEAN Writable(const char *pathname) /* flush dbug-stream, free mutex lock & wait delay - This is because some systems (MSDOS!!) dosn't flush fileheader + This is because some systems (MSDOS!!) doesn't flush fileheader and dbug-file isn't readable after a system crash !! */ |