From: Rob Pike Date: Wed, 19 Jan 2011 04:56:55 +0000 (-0800) Subject: crypto/cipher: fix build (missing file in Makefile) X-Git-Tag: weekly.2011-01-19~35 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=052ff45690fef2630c43cdde5ee91ba502f1370a;p=gostls13.git crypto/cipher: fix build (missing file in Makefile) R=agl, adg CC=golang-dev https://golang.org/cl/4073041 --- diff --git a/src/pkg/crypto/cipher/Makefile b/src/pkg/crypto/cipher/Makefile index d7e8a7a13a..8f61cf20b2 100644 --- a/src/pkg/crypto/cipher/Makefile +++ b/src/pkg/crypto/cipher/Makefile @@ -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