From a3336e696ec0ef2ffbb39df9f84258ef09aa630b Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Sat, 7 Nov 2015 16:04:38 -0800 Subject: [PATCH] removekey had an errant return Signed-off-by: David Lawrence (github: endophage) --- cryptoservice/crypto_service.go | 1 - 1 file changed, 1 deletion(-) diff --git a/cryptoservice/crypto_service.go b/cryptoservice/crypto_service.go index 8aa0f214f7..583754a43a 100644 --- a/cryptoservice/crypto_service.go +++ b/cryptoservice/crypto_service.go @@ -110,7 +110,6 @@ func (cs *CryptoService) RemoveKey(keyID string) (err error) { continue } err = ks.RemoveKey(keyPath) - return } } return // returns whatever the final values were