Clean-up ugly zero time check

This commit is contained in:
xenolf 2015-10-18 00:25:46 +02:00
parent 3ef08f7413
commit 835927f5d5

View file

@ -60,8 +60,7 @@ func generateDerCert(privKey *rsa.PrivateKey, expiration time.Time, domain strin
return nil, err
}
zero := time.Time{}
if expiration == zero {
if expiration.IsZero() {
expiration = time.Now().Add(365)
}