commit e7b4b62f999ccb7afe5cc64a2eeb1ac3968f459f
parent b6eeb8f1d4739b896abddc403c81931f7a797c5f
Author: parazyd <parazyd@dyne.org>
Date: Wed, 13 Dec 2017 02:53:04 +0100
crypto_rsa.go comment cleanup.
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/pkg/damlib/crypto_rsa.go b/pkg/damlib/crypto_rsa.go
@@ -65,7 +65,6 @@ func SavePubRsa(filename string, pubkey rsa.PublicKey) error {
// *rsa.PrivateKey. It returns an error on failure, otherwise: nil
func SavePrivRsa(filename string, privkey *rsa.PrivateKey) error {
log.Printf("Writing private key to %s\n", filename)
- // FIXME: worry or not about creating the path if it doesn't exist?
outfile, err := os.Create(filename)
defer outfile.Close()
if err != nil {