From 77e46d363d4f37e58055950f973c0075f0f20109 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 8 Aug 2007 15:08:01 +0000 Subject: [PATCH] fixed a very unhelpful error message --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%401278 --- extensions/geoip/extension.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/geoip/extension.cpp b/extensions/geoip/extension.cpp index fc057c9b..72e179de 100644 --- a/extensions/geoip/extension.cpp +++ b/extensions/geoip/extension.cpp @@ -51,7 +51,7 @@ bool GeoIP_Extension::SDK_OnLoad(char *error, size_t maxlength, bool late) if (!gi) { - snprintf(error, maxlength, "Failed to instantiate GeoIP!"); + snprintf(error, maxlength, "Could not load configs/geoip/GeoIP.dat"); return false; }