]> Cypherpunks repositories - gostls13.git/commitdiff
crypto/cipher: fix build (missing file in Makefile)
authorRob Pike <r@golang.org>
Wed, 19 Jan 2011 04:56:55 +0000 (20:56 -0800)
committerRob Pike <r@golang.org>
Wed, 19 Jan 2011 04:56:55 +0000 (20:56 -0800)
R=agl, adg
CC=golang-dev
https://golang.org/cl/4073041

src/pkg/crypto/cipher/Makefile

index d7e8a7a13a6e8b20e55f202e5cb2440e7381efc7..8f61cf20b24ca00cad8811415dc3728bb609fefc 100644 (file)
@@ -7,10 +7,11 @@ include ../../../Make.inc
 TARG=crypto/cipher
 GOFILES=\
        cbc.go\
+       cfb.go\
        cipher.go\
        ctr.go\
        io.go\
        ocfb.go\
-       cfb.go
+       ofb.go
 
 include ../../../Make.pkg