From 82e127caac18614881e40165593c28123fc03ecb Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Sat, 9 Oct 2004 23:15:36 +0000 Subject: * cygcheck.cc (dump_sysinfo): Don't warn about empty path components, just display ``.''. --- winsup/utils/cygcheck.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'winsup/utils/cygcheck.cc') diff --git a/winsup/utils/cygcheck.cc b/winsup/utils/cygcheck.cc index 8dc1b21d5..1681b9724 100644 --- a/winsup/utils/cygcheck.cc +++ b/winsup/utils/cygcheck.cc @@ -958,9 +958,9 @@ dump_sysinfo () { for (e = s; *e && *e != sep; e++); if (e-s) - printf ("\t%.*s\n", e - s, s); + printf ("\t%.*s\n", e - s, s); else - puts ("\tWarning: Empty path-component"); + puts ("\t."); count_path_items++; if (!*e) break; -- cgit v1.2.3