diff options
author | unknown <reggie@big_geek.> | 2006-05-08 14:50:13 -0500 |
---|---|---|
committer | unknown <reggie@big_geek.> | 2006-05-08 14:50:13 -0500 |
commit | 6d50eb0e98c8d509fc7bda1fcad5ada28a938c3d (patch) | |
tree | dd3df64649d7ead588a0df258156657b5c8ddd41 /mysys/my_copy.c | |
parent | 4ce6595d52fe03bd4f134a8f67a8fb72b2bc4a45 (diff) | |
download | mariadb-git-6d50eb0e98c8d509fc7bda1fcad5ada28a938c3d.tar.gz |
removing MSDOS defines and code
include/config-win.h:
removed reference to MSDOS
Diffstat (limited to 'mysys/my_copy.c')
-rw-r--r-- | mysys/my_copy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysys/my_copy.c b/mysys/my_copy.c index 342b1cdc104..a8a3a775040 100644 --- a/mysys/my_copy.c +++ b/mysys/my_copy.c @@ -95,7 +95,7 @@ int my_copy(const char *from, const char *to, myf MyFlags) if (MyFlags & MY_HOLD_ORIGINAL_MODES && !new_file_stat) DBUG_RETURN(0); /* File copyed but not stat */ VOID(chmod(to, stat_buff.st_mode & 07777)); /* Copy modes */ -#if !defined(MSDOS) && !defined(__WIN__) && !defined(__NETWARE__) +#if !defined(__WIN__) && !defined(__NETWARE__) VOID(chown(to, stat_buff.st_uid,stat_buff.st_gid)); /* Copy ownership */ #endif #if !defined(VMS) && !defined(__ZTC__) |