From fbb30d35cfa10bf36d4ecb2d0eb5971c24aab26a Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 31 Jul 2009 20:51:28 +0000 Subject: I switched the Bu::Stream::isEOS function to be named Bu::Stream::isEos, and also made sure the copyright is at the top of all the files, it's been too long. Anyway, this may effect some code, but not much, and it's an easy enough fix. --- src/base64.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'src/base64.cpp') diff --git a/src/base64.cpp b/src/base64.cpp index be5fe8d..ccf9077 100644 --- a/src/base64.cpp +++ b/src/base64.cpp @@ -1,3 +1,10 @@ +/* + * Copyright (C) 2007-2008 Xagasoft, All rights reserved. + * + * This file is part of the libbu++ library and is released under the + * terms of the license contained in the file LICENSE. + */ + #include "bu/base64.h" namespace Bu { subExceptionDef( Base64Exception ) } @@ -109,7 +116,7 @@ size_t Bu::Base64::read( void *pBuf, size_t nBytes ) { if( rNext.read( &buf[j], 1 ) == 0 ) { - if( rNext.isEOS() ) + if( rNext.isEos() ) { iChars = 0; bEosIn = true; -- cgit v1.2.3