From 6c24c198ee6ff675873e97beef07ea9a9ba4de00 Mon Sep 17 00:00:00 2001 From: Michael Boelen Date: Tue, 5 Jul 2016 12:19:43 +0200 Subject: [PATCH] [PRNT-2306] Check if files are readable before parsing them --- include/tests_printers_spools | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/tests_printers_spools b/include/tests_printers_spools index 050ff36f..4ebd146f 100644 --- a/include/tests_printers_spools +++ b/include/tests_printers_spools @@ -91,8 +91,10 @@ LogText "Test: Searching cupsd configuration file" for I in ${CUPSD_CONFIG_LOCS}; do if [ -f ${I}/cupsd.conf ]; then - CUPSD_CONFIG_FILE="${I}/cupsd.conf" - LogText "Result: found ${CUPSD_CONFIG_FILE}" + if FileIsReadable ${I}/cupsd.conf; then + CUPSD_CONFIG_FILE="${I}/cupsd.conf" + LogText "Result: found ${CUPSD_CONFIG_FILE}" + fi fi done if [ ! "${CUPSD_CONFIG_FILE}" = "" ]; then