mirror of
https://gitea.psi.ch/ELOG/elog.git
synced 2026-09-08 17:13:56 +00:00
Fixed typo
SVN revision: 973
This commit is contained in:
parent
211c76d2f6
commit
a2bded1e60
11
src/elogd.c
11
src/elogd.c
@ -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);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user