]> granicus.if.org Git - postgresql/commitdiff
Add dummy PQsslAttributes function for non-SSL builds.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 4 Feb 2015 07:13:15 +0000 (09:13 +0200)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 4 Feb 2015 07:13:15 +0000 (09:13 +0200)
All the other new SSL information functions had dummy versions in
be-secure.c, but I missed PQsslAttributes(). Oops. Surprisingly, the linker
did not complain about the missing function on most platforms represented in
the buildfarm, even though it is exported, except for a few Windows systems.

src/interfaces/libpq/fe-secure.c

index b43f9fe155d490a93b8c7395cbff330de9906e8c..57c572bd09620e403f4ea4184bc0767c1321a475 100644 (file)
@@ -407,6 +407,14 @@ PQsslAttribute(PGconn *conn, const char *attribute_name)
 {
        return NULL;
 }
+
+const char **
+PQsslAttributes(PGconn *conn)
+{
+       static const char *result[] = { NULL };
+
+       return result;
+}
 #endif   /* USE_SSL */