diff options
author | unknown <lenz@mysql.com> | 2003-04-23 01:51:26 +0200 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2003-04-23 01:51:26 +0200 |
commit | e103eeb2bb21e0f822c3f7c83f6acced84278a4d (patch) | |
tree | e9928ecb2dbb009ea21a5c4e27b48a214c5ed18f | |
parent | ce0dbf79151787a5117317c7c41cdd3cbb10f61a (diff) | |
download | mariadb-git-e103eeb2bb21e0f822c3f7c83f6acced84278a4d.tar.gz |
- Only ignore _regular_ world-writeable files (thanks to Tim Bunce for
discovering this)
-rw-r--r-- | mysys/default.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysys/default.c b/mysys/default.c index a3942425b7d..26121cc0e56 100644 --- a/mysys/default.c +++ b/mysys/default.c @@ -249,7 +249,8 @@ static my_bool search_default_file(DYNAMIC_ARRAY *args, MEM_ROOT *alloc, MY_STAT stat_info; if (!my_stat(name,&stat_info,MYF(0))) return 0; - if (stat_info.st_mode & S_IWOTH) /* ignore world-writeable files */ + /* ignore world-writeable _regular_ files */ + if (stat_info.st_mode & S_IWOTH && stat_info.st_mode & S_IFREG) { fprintf(stderr, "warning: World-writeable config file %s is ignored\n", name); |