summaryrefslogtreecommitdiff
path: root/mysys/my_redel.c
diff options
context:
space:
mode:
authorreggie@big_geek. <>2006-05-08 14:50:13 -0500
committerreggie@big_geek. <>2006-05-08 14:50:13 -0500
commit11d66e806836a1bb57b4709ca2b171a0c9dc9bd6 (patch)
treedd3df64649d7ead588a0df258156657b5c8ddd41 /mysys/my_redel.c
parent93f965d1fe4b4cec901aeddc43de3b0bc78e3758 (diff)
downloadmariadb-git-11d66e806836a1bb57b4709ca2b171a0c9dc9bd6.tar.gz
removing MSDOS defines and code
Diffstat (limited to 'mysys/my_redel.c')
-rw-r--r--mysys/my_redel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysys/my_redel.c b/mysys/my_redel.c
index 02d3db8b860..abfe84102ef 100644
--- a/mysys/my_redel.c
+++ b/mysys/my_redel.c
@@ -90,14 +90,14 @@ int my_copystat(const char *from, const char *to, int MyFlags)
return 1;
VOID(chmod(to, statbuf.st_mode & 07777)); /* Copy modes */
-#if !defined(MSDOS) && !defined(__WIN__) && !defined(__NETWARE__)
+#if !defined(__WIN__) && !defined(__NETWARE__)
if (statbuf.st_nlink > 1 && MyFlags & MY_LINK_WARNING)
{
if (MyFlags & MY_LINK_WARNING)
my_error(EE_LINK_WARNING,MYF(ME_BELL+ME_WAITTANG),from,statbuf.st_nlink);
}
VOID(chown(to, statbuf.st_uid, statbuf.st_gid)); /* Copy ownership */
-#endif /* MSDOS */
+#endif /* !__WIN__ && !__NETWARE__ */
#ifndef VMS
#ifndef __ZTC__