Fixed typo

SVN revision: 973
This commit is contained in:
Stefan Ritt 2004-07-23 07:31:32 +00:00
parent 211c76d2f6
commit a2bded1e60

View File

@ -6,6 +6,9 @@
Contents: Web server program for Electronic Logbook ELOG Contents: Web server program for Electronic Logbook ELOG
$Log$ $Log$
Revision 1.397 2004/07/23 07:31:32 midas
Fixed typo
Revision 1.396 2004/07/23 07:30:26 midas Revision 1.396 2004/07/23 07:30:26 midas
Fixed compiler warnings Fixed compiler warnings
@ -1057,13 +1060,13 @@ void base64_decode(char *s, char *d)
unsigned int t; unsigned int t;
while (*s) { while (*s) {
t = (cind(*s) << 18; t = cind(*s) << 18;
s++; s++;
t |= (cind(*s) << 12; t |= cind(*s) << 12;
s++; s++;
t |= (cind(*s) << 6; t |= cind(*s) << 6;
s++; s++;
t |= (cind(*s) << 0; t |= cind(*s) << 0;
s++; s++;
*(d + 2) = (char) (t & 0xFF); *(d + 2) = (char) (t & 0xFF);