Dropped testing print

This commit is contained in:
Daniele Varrazzo 2016-12-25 17:44:25 +01:00
parent b77de74f72
commit c2d405116b

View File

@ -504,7 +504,6 @@ dsn_has_replication(char *pgdsn)
connopts = PQconninfoParse(pgdsn, NULL); connopts = PQconninfoParse(pgdsn, NULL);
for(ptr = connopts; ptr->keyword != NULL; ptr++) { for(ptr = connopts; ptr->keyword != NULL; ptr++) {
printf("keyword %s val %s\n", ptr->keyword, ptr->val);
if(strcmp(ptr->keyword, "replication") == 0 && ptr->val != NULL) if(strcmp(ptr->keyword, "replication") == 0 && ptr->val != NULL)
ret = 1; ret = 1;
} }