From f5aca1a1b402bd7ebc944dc6e6fe65828d863365 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 20 Jan 2011 02:14:08 +0000 Subject: Bu::FString is now String, and there's a shell script to fix any other programs that were using fstring, I hope. --- src/md5.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/md5.cpp') diff --git a/src/md5.cpp b/src/md5.cpp index abf4bfa..db70ddc 100644 --- a/src/md5.cpp +++ b/src/md5.cpp @@ -60,7 +60,7 @@ void Bu::Md5::reset() iFill = 0; } -void Bu::Md5::setSalt( const Bu::FString & /*sSalt*/ ) +void Bu::Md5::setSalt( const Bu::String & /*sSalt*/ ) { } @@ -84,11 +84,11 @@ void Bu::Md5::addData( const void *sVData, int iSize ) iBytes += iSize; } -Bu::FString Bu::Md5::getResult() +Bu::String Bu::Md5::getResult() { long lsum[4]; compCap( lsum ); - return Bu::FString( (const char *)lsum, 4*4 ); + return Bu::String( (const char *)lsum, 4*4 ); } void Bu::Md5::writeResult( Bu::Stream &sOut ) -- cgit v1.2.3