aboutsummaryrefslogtreecommitdiff
path: root/flags.go
diff options
context:
space:
mode:
authorGibheer <gibheer@gmail.com>2015-03-23 09:45:39 +0100
committerGibheer <gibheer@gmail.com>2015-03-23 09:45:39 +0100
commit3e34c17449cef23b79d614fac8010ef557f2d144 (patch)
treed32f3f865e382c22ce3c7dd143220045cfea186d /flags.go
parent885340ef8f27f81c626626798cdbcd63e2f992b6 (diff)
rename to better distinguish between cert und csr
Diffstat (limited to 'flags.go')
-rw-r--r--flags.go4
1 files 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
}