From 905dc7c47a07af3337a3afca15985678b7db0833 Mon Sep 17 00:00:00 2001 From: Bert Hubert Date: Tue, 11 Sep 2007 20:08:11 +0000 Subject: [PATCH] fix typo, closing ticket #157 by anonymous (thanks!) git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@1090 d19b8d6e-7fed-0310-83ef-9ca221ded41b --- modules/geobackend/geobackend.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/geobackend/geobackend.cc b/modules/geobackend/geobackend.cc index d4a9bf216..b21d008a6 100644 --- a/modules/geobackend/geobackend.cc +++ b/modules/geobackend/geobackend.cc @@ -319,7 +319,7 @@ void GeoBackend::loadIPLocationMap() { // Stat file to see if it has changed since last read struct stat stbuf; if (stat(filename.c_str(), &stbuf) != 0 || !S_ISREG(stbuf.st_mode)) { - const string errormsg = "stat() failed, or " + filename + "is no regular file."; + const string errormsg = "stat() failed, or " + filename + " is no regular file."; if (lastDiscoverTime == 0) // We have no older map, bail out throw AhuException(errormsg); else { -- 2.40.0