ash: revert "make dot command search current directory first"
authorDenys Vlasenko <vda.linux@googlemail.com>
Tue, 10 Jan 2017 14:18:38 +0000 (15:18 +0100)
committerDenys Vlasenko <vda.linux@googlemail.com>
Tue, 10 Jan 2017 14:18:38 +0000 (15:18 +0100)
Reverts this:
    commit 8ad78e1ec7b2e873953f9f476fb63b5893526c39
    Author: Denis Vlasenko <vda.linux@googlemail.com>
    Date:   Sun Feb 15 12:40:30 2009 +0000
    ash: make dot command search current directory first, as bash does.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
shell/ash.c

index 7c1204a473f56a53f5ecb9ffb169de7de7367143..866c7de05b1dc6ebf393b23c1f87b5cf59df4461 100644 (file)
@@ -12502,16 +12502,7 @@ find_dot_file(char *name)
        if (strchr(name, '/'))
                return name;
 
-       /* IIRC standards do not say whether . is to be searched.
-        * And it is even smaller this way, making it unconditional for now:
-        */
-       if (1) { /* ENABLE_ASH_BASH_COMPAT */
-               fullname = name;
-               goto try_cur_dir;
-       }
-
        while ((fullname = path_advance(&path, name)) != NULL) {
- try_cur_dir:
                if ((stat(fullname, &statb) == 0) && S_ISREG(statb.st_mode)) {
                        /*
                         * Don't bother freeing here, since it will