From c2e73307b593b6d93d66ef74b2c8bde2b4e8e81f Mon Sep 17 00:00:00 2001 From: Robert Griesemer Date: Tue, 2 Mar 2010 13:46:51 -0800 Subject: [PATCH] gofmt: experiment: align values in map composites where possible - gofmt -w src misc - looking for feedback R=rsc, r CC=golang-dev https://golang.org/cl/223076 --- handshake_client.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/handshake_client.go b/handshake_client.go index d07e2d8..8cc6b74 100644 --- a/handshake_client.go +++ b/handshake_client.go @@ -34,11 +34,11 @@ func (h *clientHandshake) loop(writeChan chan<- interface{}, controlChan chan<- finishedHash := newFinishedHash() hello := &clientHelloMsg{ - major: defaultMajor, - minor: defaultMinor, - cipherSuites: []uint16{TLS_RSA_WITH_RC4_128_SHA}, + major: defaultMajor, + minor: defaultMinor, + cipherSuites: []uint16{TLS_RSA_WITH_RC4_128_SHA}, compressionMethods: []uint8{compressionNone}, - random: make([]byte, 32), + random: make([]byte, 32), } currentTime := uint32(config.Time())