Blame SOURCES/ltrace-0.7.91-XDG_CONFIG_DIRS-2.patch

92319b
From 8fbbcfc92a7ad388334bf162222ddee1a03c9d29 Mon Sep 17 00:00:00 2001
92319b
From: Petr Machata <pmachata@redhat.com>
92319b
Date: Mon, 2 Mar 2015 17:21:36 +0100
92319b
Subject: [PATCH] Also muffle warnings about weird file types referenced by
92319b
 environment
92319b
92319b
---
92319b
 options.c | 5 +++--
92319b
 1 file changed, 3 insertions(+), 2 deletions(-)
92319b
92319b
diff --git a/options.c b/options.c
92319b
index 61d1633..e602848 100644
92319b
--- a/options.c
92319b
+++ b/options.c
92319b
@@ -505,8 +505,9 @@ opt_F_get_kind(struct opt_F_t *entry)
92319b
 		} else if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode)) {
92319b
 			entry->kind = OPT_F_FILE;
92319b
 		} else {
92319b
-			fprintf(stderr, "%s is neither a regular file, "
92319b
-				"nor a directory.\n", entry->pathname);
92319b
+			if (entry->origin == OPT_F_CMDLINE)
92319b
+				fprintf(stderr, "%s is neither a regular file, "
92319b
+					"nor a directory.\n", entry->pathname);
92319b
 			entry->kind = OPT_F_BROKEN;
92319b
 		}
92319b
 	}
92319b
-- 
92319b
2.1.0
92319b