- 05 Apr, 2012 5 commits
-
-
Alex Brainman authored
Fixes #3476. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5986045
-
Dave Cheney authored
Fixes #3458. R=adg, dsymonds CC=golang-dev https://golang.org/cl/5969071
-
Andrew Gerrand authored
Fixes #3420. (which was already fixed) R=golang-dev, bradfitz, dsymonds CC=golang-dev https://golang.org/cl/5987043
-
Andrew Gerrand authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5986043
-
Ian Lance Taylor authored
Tested using 6g and gccgo on x86_64 GNU/Linux and using gccgo on PowerPC GNU/Linux (which is big-endian). R=golang-dev, bradfitz, mikioh.mikioh, iant CC=golang-dev https://golang.org/cl/5975073
-
- 04 Apr, 2012 5 commits
-
-
Adam Langley authored
crypto/rsa: only enforce that de ≡ 1 mod |(ℤ/nℤ)*| in order to load private keys generated by GnuTLS. Previously we checked that de ≡ 1 mod φ(n). Since φ(n) is a multiple of |(ℤ/nℤ)*|, this encompassed the new check, but it was too strict as keys generated by GnuTLS would be rejected when gcd(p-1,q-1)≠1. (Also updated the error strings in crypto/rsa to contain the package name, which some were missing.) R=golang-dev, r CC=golang-dev https://golang.org/cl/5867043
-
Shenghou Ma authored
Fix the builders. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5976068
-
Brad Fitzpatrick authored
Before, "go get -v foo/bar" was assuming "foo" was a hostname and trying to perform discovery on it. Now, require a dot in the first path component (the hostname). R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5981057
-
Dmitry Chestnykh authored
Special case for encoding 4 zeros as 'z' didn't update source slice, causing 'index out of bounds' panic in destination slice. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5970078
-
Charles L. Dorian authored
Match new C99 values for special cases. Fixes #2977. R=rsc, golang-dev CC=golang-dev https://golang.org/cl/5972058
-
- 03 Apr, 2012 10 commits
-
-
Michael Lewis authored
Fixes #3449 R=golang-dev CC=bradfitz, golang-dev https://golang.org/cl/5970076
-
Rob Pike authored
For mysterious reasons, the existing string was just wrong: it was missing a colon. There is no apparent reason for this discrepancy. This should be safe to fix because existing uses would not be RFC822-compliant; people cannot be depending on it to generate correct mail headers. Fixes #3444. R=golang-dev, dsymonds, iant, rsc CC=golang-dev https://golang.org/cl/5969072
-
Brad Fitzpatrick authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5970077
-
Brad Fitzpatrick authored
Doesn't fix any known issue. This bit me in some unrelated code and I thought of this tool. R=golang-dev, krautz, mikkel CC=golang-dev https://golang.org/cl/5976067
-
Shenghou Ma authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5936050
-
Shenghou Ma authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5940052
-
Shenghou Ma authored
R=adg, dsymonds CC=golang-dev https://golang.org/cl/5969063
-
Dave Cheney authored
Fixes #3442. R=for.go.yong, dsymonds, sougou, minux.ma, rsc CC=golang-dev https://golang.org/cl/5975052
-
Rob Pike authored
Without this fix, an erroneous template causes a panic; should be caught safely. The bug did not affect correct templates. Fixes #3267. R=golang-dev, dsymonds, rsc CC=golang-dev https://golang.org/cl/5900065
-
Alex Brainman authored
Fixes #3437. R=rsc CC=golang-dev https://golang.org/cl/5967063
-
- 02 Apr, 2012 12 commits
-
-
Andrew Gerrand authored
R=golang-dev CC=golang-dev https://golang.org/cl/5952046
-
Andrew Gerrand authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5956043
-
Peter Weinberger authored
Fixes #3429. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5966047
-
Sameer Ajmani authored
- flag * and / as comment characters - mark newline as a comment-ender - include newline in go-mode-whitespace-p Thanks Jonathan Amsterdam and Steve Yegge for the patch! R=golang-dev, rsc CC=golang-dev, jba, stevey https://golang.org/cl/5938056
-
Russ Cox authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5976059
-
Russ Cox authored
Fixes #3430. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5981047
-
Benny Siegert authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5969051
-
Maxim Pimenov authored
R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5975043
-
Ryan Hitchman authored
R=golang-dev, r, rsc CC=golang-dev https://golang.org/cl/5857045
-
Shenghou Ma authored
Fixes #3422. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5967057
-
Shenghou Ma authored
Fixes #3312. R=golang-dev, adg CC=golang-dev https://golang.org/cl/5907065
-
Mikkel Krautz authored
R=adg CC=golang-dev https://golang.org/cl/5970061
-
- 31 Mar, 2012 2 commits
-
-
Aaron Kemp authored
The '...' was missing on a call to fmt.Sprintf() which would result in the slice being printed instead of the correct result. R=golang-dev, gri CC=golang-dev https://golang.org/cl/5967051
-
Robert Griesemer authored
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5966054
-
- 30 Mar, 2012 6 commits
-
-
Robert Griesemer authored
R=golang-dev, adg, bradfitz CC=golang-dev https://golang.org/cl/5869050
-
Ian Lance Taylor authored
R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5971044
-
Shenghou Ma authored
Part of issue 3424. R=golang-dev, r CC=golang-dev https://golang.org/cl/5955050
-
Shenghou Ma authored
Fixes #3420. Part of issue 3424. R=golang-dev, cldorian, adg, r CC=golang-dev https://golang.org/cl/5958046
-
Shenghou Ma authored
Fixes #3427. Part of issue 3424. R=golang-dev, bradfitz, r CC=golang-dev https://golang.org/cl/5959045
-
Shenghou Ma authored
Part of issue 3424 R=golang-dev, r CC=golang-dev https://golang.org/cl/5955049
-