From: Arran Cudbard-Bell Date: Tue, 5 Nov 2019 20:45:30 +0000 (-0600) Subject: Print what we failed to open X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f1a5c430ea9d7f18a063ecd8f03756e944a574b;p=thirdparty%2Ffreeradius-server.git Print what we failed to open --- diff --git a/src/bin/unit_test_attribute.c b/src/bin/unit_test_attribute.c index 338a04b6a6f..1fa603e4bcf 100644 --- a/src/bin/unit_test_attribute.c +++ b/src/bin/unit_test_attribute.c @@ -2026,7 +2026,7 @@ static int process_file(bool *exit_now, TALLOC_CTX *ctx, CONF_SECTION *features, fp = fopen(path, "r"); if (!fp) { - ERROR("Error opening \"%s\": %s", path, fr_syserror(errno)); + ERROR("Error opening test file \"%s\": %s", path, fr_syserror(errno)); ret = -1; goto finish; }