diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2017-10-04 08:07:41 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2017-10-04 08:07:41 +0300 |
commit | 6ca35c14286d7649ff3938fd54fcf9c9bee6e136 (patch) | |
tree | 0c0fe0b2d4fc45e5a28268dd9172b3012b3a7d53 /plugin | |
parent | 8d413c32dc50469d65185d6252014ef29b7b42c2 (diff) | |
download | mariadb-git-6ca35c14286d7649ff3938fd54fcf9c9bee6e136.tar.gz |
Replace a non-ASCII character in a comment
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/server_audit/server_audit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/server_audit/server_audit.c b/plugin/server_audit/server_audit.c index d00fc313ab8..87a18e47fc5 100644 --- a/plugin/server_audit/server_audit.c +++ b/plugin/server_audit/server_audit.c @@ -160,7 +160,7 @@ static File loc_open(const char *FileName, int Flags) /* We could just use _open() here. but prefer to open in unix-similar way just like my_open() does it on Windows. - This gives atomic multiprocess-safe´appends, and possibility to rename + This gives atomic multiprocess-safe appends, and possibility to rename or even delete file while it is open, and CRT lacks this features. */ assert(Flags == (O_APPEND | O_CREAT | O_WRONLY)); |