diff options
author | Sergei Golubchik <serg@mariadb.org> | 2018-05-29 23:00:51 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2018-06-04 12:32:22 +0200 |
commit | 37659ef43be689b2a2f8c507d9395e839bf66066 (patch) | |
tree | d520b7a43778431730704543998f1b1bb83e9708 /mysys/my_copy.c | |
parent | 9988a423d229730b252942b7fa066d1591b7eca9 (diff) | |
download | mariadb-git-37659ef43be689b2a2f8c507d9395e839bf66066.tar.gz |
mysys: remove dead ME_xxx flags
Diffstat (limited to 'mysys/my_copy.c')
-rw-r--r-- | mysys/my_copy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/my_copy.c b/mysys/my_copy.c index bd23dfc48cd..3360b41f64d 100644 --- a/mysys/my_copy.c +++ b/mysys/my_copy.c @@ -112,7 +112,7 @@ int my_copy(const char *from, const char *to, myf MyFlags) { my_errno= errno; if (MyFlags & MY_WME) - my_error(EE_CHANGE_PERMISSIONS, MYF(ME_BELL+ME_WAITTANG), to, errno); + my_error(EE_CHANGE_PERMISSIONS, MYF(ME_BELL), to, errno); if (MyFlags & MY_FAE) goto err; } @@ -122,7 +122,7 @@ int my_copy(const char *from, const char *to, myf MyFlags) { my_errno= errno; if (MyFlags & MY_WME) - my_error(EE_CANT_COPY_OWNERSHIP, MYF(ME_BELL+ME_WAITTANG), to, errno); + my_error(EE_CANT_COPY_OWNERSHIP, MYF(ME_BELL), to, errno); if (MyFlags & MY_FAE) goto err; } |