]> granicus.if.org Git - pdns/commitdiff
fix typo, closing ticket #157 by anonymous (thanks!)
authorBert Hubert <bert.hubert@netherlabs.nl>
Tue, 11 Sep 2007 20:08:11 +0000 (20:08 +0000)
committerBert Hubert <bert.hubert@netherlabs.nl>
Tue, 11 Sep 2007 20:08:11 +0000 (20:08 +0000)
git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@1090 d19b8d6e-7fed-0310-83ef-9ca221ded41b

modules/geobackend/geobackend.cc

index d4a9bf2168975e48da1343da265580b60a640813..b21d008a603a26f48e8f27e579667d7d87d4a061 100644 (file)
@@ -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 {