Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
n0rad committed Nov 1, 2020
1 parent 30379ca commit 031299f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func StartServer(config CliConfig) error {
socketServer := Server{
CertKey: config.ServerKey,
CertPem: config.ServerPem,
CAPem: config.CaPem,
CAPem: config.CaPem,
SocketPath: config.SocketPath,
StopOnAnyClientError: config.StopOnAnyClientError,
}
Expand Down
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type Server struct {
StopOnAnyClientError bool
CertKey string
CertPem string
CAPem string
CAPem string

userUid uint32
commands map[string]func(net.Conn) error
Expand Down

0 comments on commit 031299f

Please sign in to comment.