git-svn-id: https://svn.apache.org/repos/asf/lucene/hadoop/branches/branch-0.13@541755 13f79535-47bb-0310-9956-ffa450edef68
@@ -422,6 +422,10 @@ Branch 0.13 (unreleased changes)
126. HADOOP-1427. Fix a typo that caused GzipCodec to incorrectly use
a very small input buffer. (Espen Amble Kolstad via cutting)
+127. HADOOP-1435. Fix globbing code to no longer use the empty string
+ to indicate the default directory, per HADOOP-1386.
+ (Hairong Kuang via cutting)
+
Release 0.12.3 - 2007-04-06
@@ -583,7 +583,7 @@ public abstract class FileSystem extends Configured {
parents[0] = new Path(Path.SEPARATOR);
level = 1;
} else {
- parents[0] = new Path("");
+ parents[0] = new Path(Path.CUR_DIR);
}
Path[] results = globPathsLevel(parents, components, level, filter);