1
0

nt var was renamed to more understandable typ.

This commit is contained in:
Alexander Andreev 2022-05-24 18:28:23 +04:00
parent 3ec15fbd2a
commit 8b34c1e935
Signed by: Arav
GPG Key ID: 0388CC8FAA51063F

View File

@ -36,7 +36,7 @@ func main() {
}
defer func() {
if nt, addr := config.SplitNetworkAddress(); nt == "unix" {
if typ, addr := config.SplitNetworkAddress(); typ == "unix" {
os.Remove(addr)
}
}()