Make postgresql ident auth work after fixing setuid/setgid again and release as 0.1.

This commit is contained in:
Dominik Pantůček 2025-04-13 20:31:18 +02:00
parent 0e012332e1
commit 83aeeea050
2 changed files with 9 additions and 5 deletions

View file

@ -43,9 +43,13 @@
(bd-conn
(connect
`((dbname . ,name)
(host . ,host)
(user . ,user)
(password . ,pass)))))
,@(if host
`((host . ,host))
'())
,@(if user
`((user . ,user)
(password . ,pass))
'())))))
(define (sql-null->symbol v)
(if (sql-null? v)