]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
spelling: postgresql
authorJosh Soref <jsoref@users.noreply.github.com>
Thu, 2 Feb 2017 10:23:55 +0000 (10:23 +0000)
committerJosh Soref <jsoref@users.noreply.github.com>
Thu, 2 Feb 2017 10:23:55 +0000 (10:23 +0000)
docs/markdown/changelog.raw.md
modules/gpgsqlbackend/spgsql.cc

index 90209908f85824ef70372b636a30a877f9104701..a8aa23e9dd31fdb3e50bc3ece7e86455b4837237 100644 (file)
@@ -1271,7 +1271,7 @@ Changes between 3.3.1 and 3.4.0-RC1 follow.
 -   Bundled PolarSSL has been upgraded to 1.3.2
 -   PolarSSL replaced previously bundled implementations of AES ([commit e22d9b4](https://github.com/PowerDNS/pdns/commit/e22d9b4)) and SHA ([commit 9101035](https://github.com/PowerDNS/pdns/commit/9101035))
 -   bindbackend is now a module
--   [commit 14a2e52](https://github.com/PowerDNS/pdns/commit/14a2e52): Use the inet data type for supermasters.ip on postgrsql.
+-   [commit 14a2e52](https://github.com/PowerDNS/pdns/commit/14a2e52): Use the inet data type for supermasters.ip on postgresql.
 -   We now send an empty SERVFAIL when a CNAME chain is too long, instead of including the partial chain.
 -   [commit 3613a51](https://github.com/PowerDNS/pdns/commit/3613a51): Show built-in features in --version output
 -   [commit 4bd7d35](https://github.com/PowerDNS/pdns/commit/4bd7d35): make domainmetadata queries case insensitive
index 6b63e7d68fd5b7899f99b1f73ffbe6bcecfcbd67..724c4e705612218be8f142124dbf0ce1958973ce 100644 (file)
@@ -106,7 +106,7 @@ public:
     // if you return SETOF refcursor.
     if (PQftype(d_res_set, 0) == 1790) { // REFCURSOR
 #if PG_VERSION_NUM > 90000
-      // PQescapeIdentifier was added to libpq in postggresql 9.0
+      // PQescapeIdentifier was added to libpq in postgresql 9.0
       char *val = PQgetvalue(d_res_set, d_cur_set++, 0);
       char *portal =  PQescapeIdentifier(d_db(), val, strlen(val));
       string cmd = string("FETCH ALL FROM \"") + string(portal) + string("\"");