go1.3 compat

This commit is contained in:
Jörg Thalheim 2016-02-02 09:25:29 +01:00
parent 78cd7f346c
commit c67dbb0ebd
3 changed files with 20 additions and 2 deletions

View File

@ -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
View 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
View File

@ -0,0 +1,9 @@
// +build !go1.4
package main
import "os"
func unsetenv(key string) {
os.Setenv(key, "")
}