File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -544,7 +544,7 @@ Base.isdir(fp::AbstractPath) = isdir(mode(fp))
544544Base. isfile (fp:: AbstractPath ) = isfile (mode (fp))
545545Base. islink (fp:: AbstractPath ) = islink (lstat (fp). mode)
546546Base. issocket (fp:: AbstractPath ) = issocket (mode (fp))
547- Base. isfifo (fp:: AbstractPath ) = issocket (mode (fp))
547+ Base. isfifo (fp:: AbstractPath ) = isfifo (mode (fp))
548548Base. ischardev (fp:: AbstractPath ) = ischardev (mode (fp))
549549Base. isblockdev (fp:: AbstractPath ) = isblockdev (mode (fp))
550550
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ Base.isdir(fp::SystemPath) = isdir(mode(fp))
9898Base. isfile (fp:: SystemPath ) = isfile (mode (fp))
9999Base. islink (fp:: SystemPath ) = islink (lstat (fp). mode)
100100Base. issocket (fp:: SystemPath ) = issocket (mode (fp))
101- Base. isfifo (fp:: SystemPath ) = issocket (mode (fp))
101+ Base. isfifo (fp:: SystemPath ) = isfifo (mode (fp))
102102Base. ischardev (fp:: SystemPath ) = ischardev (mode (fp))
103103Base. isblockdev (fp:: SystemPath ) = isblockdev (mode (fp))
104104
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ FilePathsBase.isdir(fp::TestPath) = isdir(mode(fp))
5353Base. isfile (fp:: TestPath ) = isfile (mode (fp))
5454Base. islink (fp:: TestPath ) = islink (lstat (fp). mode)
5555Base. issocket (fp:: TestPath ) = issocket (mode (fp))
56- Base. isfifo (fp:: TestPath ) = issocket (mode (fp))
56+ Base. isfifo (fp:: TestPath ) = isfifo (mode (fp))
5757Base. ischardev (fp:: TestPath ) = ischardev (mode (fp))
5858Base. isblockdev (fp:: TestPath ) = isblockdev (mode (fp))
5959Base. ismount (fp:: TestPath ) = ismount (test2posix (fp))
You can’t perform that action at this time.
0 commit comments