You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
430 B
18 lines
430 B
--- src/ngx_postgres_module.c.orig
|
|
+++ src/ngx_postgres_module.c
|
|
@@ -1320,12 +1320,14 @@
|
|
continue;
|
|
}
|
|
|
|
+#if (nginx_version < 1011006)
|
|
if (uscfp[i]->default_port && url->default_port
|
|
&& (uscfp[i]->default_port != url->default_port))
|
|
{
|
|
dd("default_port doesn't match");
|
|
continue;
|
|
}
|
|
+#endif
|
|
|
|
dd("returning");
|
|
return uscfp[i];
|