Strip scheme from connstring in gdbm

This commit is contained in:
lash 2025-01-15 00:32:56 +00:00
parent 24e729d275
commit c0534ede1b
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746

View File

@ -63,6 +63,7 @@ func probeGdbm(s string) (string, string, bool) {
if v.Scheme != "gdbm" { if v.Scheme != "gdbm" {
return "", "", false return "", "", false
} }
s = v.Path
return s, domain, true return s, domain, true
} }