go1.3 compat
This commit is contained in:
parent
78cd7f346c
commit
c67dbb0ebd
@ -91,8 +91,8 @@ func parseFlags() options {
|
||||
}
|
||||
|
||||
func Listeners() []*net.TCPListener {
|
||||
defer os.Unsetenv("LISTEN_PID")
|
||||
defer os.Unsetenv("LISTEN_FDS")
|
||||
defer unsetenv("LISTEN_PID")
|
||||
defer unsetenv("LISTEN_FDS")
|
||||
|
||||
pid, err := strconv.Atoi(os.Getenv("LISTEN_PID"))
|
||||
if err != nil || pid != os.Getpid() {
|
||||
|
9
unsetenv.go
Normal file
9
unsetenv.go
Normal file
@ -0,0 +1,9 @@
|
||||
// +build go1.4
|
||||
|
||||
package main
|
||||
|
||||
import "os"
|
||||
|
||||
func unsetenv(key string) {
|
||||
os.Unsetenv(key)
|
||||
}
|
9
unsetenv_13.go
Normal file
9
unsetenv_13.go
Normal file
@ -0,0 +1,9 @@
|
||||
// +build !go1.4
|
||||
|
||||
package main
|
||||
|
||||
import "os"
|
||||
|
||||
func unsetenv(key string) {
|
||||
os.Setenv(key, "")
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user