From: Bert Hubert Date: Tue, 11 Sep 2007 20:08:11 +0000 (+0000) Subject: fix typo, closing ticket #157 by anonymous (thanks!) X-Git-Tag: rec-3.1.7.1~151 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=905dc7c47a07af3337a3afca15985678b7db0833;p=pdns fix typo, closing ticket #157 by anonymous (thanks!) git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@1090 d19b8d6e-7fed-0310-83ef-9ca221ded41b --- 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 {