*** empty log message ***

This commit is contained in:
dockes 2006-02-01 07:14:45 +00:00
parent ed3de70f2f
commit 7198b521b5
2 changed files with 4 additions and 4 deletions

View File

@ -5,11 +5,11 @@
*~ *~
.#* .#*
.#* .#*
./Makefile
.moc .moc
.obj .obj
.ui .ui
CVS CVS
Makefile
TAGS TAGS
alldeps alldeps
autom4* autom4*
@ -21,10 +21,10 @@ lib/librcl.a
makesrcdist.sh makesrcdist.sh
mk/localdefs mk/localdefs
qtgui/Makefile qtgui/Makefile
qtgui/recoll.pro
qtgui/preview/Makefile qtgui/preview/Makefile
qtgui/preview/preview.pro qtgui/preview/preview.pro
qtgui/preview/pvmain.cpp qtgui/preview/pvmain.cpp
qtgui/recoll.pro
recollinstall recollinstall
sampleconf/recoll.conf sampleconf/recoll.conf
sysconf sysconf

View File

@ -1,5 +1,5 @@
#ifndef lint #ifndef lint
static char rcsid[] = "@(#$Id: base64.cpp,v 1.5 2006-01-23 13:32:28 dockes Exp $ (C) 2005 J.F.Dockes"; static char rcsid[] = "@(#$Id: base64.cpp,v 1.6 2006-02-01 07:14:45 dockes Exp $ (C) 2005 J.F.Dockes";
#endif #endif
/* /*
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
@ -38,7 +38,7 @@ static const char Base64[] =
static const char Pad64 = '='; static const char Pad64 = '=';
bool base64_decode(const string& in, string& out) bool base64_decode(const string& in, string& out)
{ {
int io = 0, state = 0, ch; int io = 0, state = 0, ch = 0;
char *pos; char *pos;
unsigned int ii = 0; unsigned int ii = 0;
out.erase(); out.erase();