summaryrefslogtreecommitdiff
path: root/lookup.c
diff options
context:
space:
mode:
Diffstat (limited to 'lookup.c')
-rw-r--r--lookup.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/lookup.c b/lookup.c
index 7533bae..874a9b1 100644
--- a/lookup.c
+++ b/lookup.c
@@ -5,6 +5,7 @@
* Subject to the GPL, version 2.
*/
+#include <errno.h>
#include <string.h>
#include "hash.h"
@@ -40,7 +41,9 @@ void lookup_init_ports(enum ports which)
fp = fopen(file, "r");
if (!fp) {
- fprintf(stderr, "No %s found for ports resolving!\n", file);
+ fprintf(stderr, "Cannot open %s: %s."
+ "Port name resolution won't be available.\n",
+ file, strerror(errno));
return;
}