search for: rhbz1293271

Displaying 1 result from an estimated 1 matches for "rhbz1293271".

2016 Feb 03
2
[PATCH 1/2] daemon: glob: do not return directories with trailing slash
...now need to append the slash when building paths using its results. The test-glob.sh test of guestfish is adapted to this. Related to RHBZ#1293271. --- daemon/glob.c | 2 +- fish/test-glob.sh | 2 +- tests/regressions/Makefile.am | 2 ++ tests/regressions/rhbz1293271.sh | 70 ++++++++++++++++++++++++++++++++++++++++ 4 files changed, 74 insertions(+), 2 deletions(-) create mode 100755 tests/regressions/rhbz1293271.sh diff --git a/daemon/glob.c b/daemon/glob.c index 45fb30f..0e646bd 100644 --- a/daemon/glob.c +++ b/daemon/glob.c @@ -33,7 +33,7 @@ do_glob_expand...