From 3e34c17449cef23b79d614fac8010ef557f2d144 Mon Sep 17 00:00:00 2001 From: Gibheer Date: Mon, 23 Mar 2015 09:45:39 +0100 Subject: [PATCH] rename to better distinguish between cert und csr --- flags.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flags.go b/flags.go index 745ba39..2b267b7 100644 --- a/flags.go +++ b/flags.go @@ -29,7 +29,7 @@ var ( type ( // holds all certificate related flags, which need parsing afterwards - certFlagsContainer struct { + certiticateRequestRawFlags struct { manual struct { serialNumber string // the serial number for the cert commonName string // the common name used in the cert @@ -57,7 +57,7 @@ type ( privateKeyPath string // path to the private key publicKeyPath string // path to the public key signRequestPath string // path to the certificate sign request - certificateFlags certFlagsContainer // container for certificate related flags + certificateFlags certiticateRequestRawFlags // container for certificate related flags signature string // a base64 encoded signature }