From 052ff45690fef2630c43cdde5ee91ba502f1370a Mon Sep 17 00:00:00 2001 From: Rob Pike Date: Tue, 18 Jan 2011 20:56:55 -0800 Subject: [PATCH] crypto/cipher: fix build (missing file in Makefile) R=agl, adg CC=golang-dev https://golang.org/cl/4073041 --- src/pkg/crypto/cipher/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pkg/crypto/cipher/Makefile b/src/pkg/crypto/cipher/Makefile index d7e8a7a13a6..8f61cf20b24 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