X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=libcitadel%2Flib%2Ftools.c;h=14e43071a1761d6c02ed248ae6fdc6e70d82c7c7;hb=3d39d7173d33126e2fcd1631eeff732918ccd421;hp=ff35f9ecae04b9e7408cf9322bb17848fca7216d;hpb=98ac706cc21d0f46f4f49d8343a12a6993c836de;p=citadel.git diff --git a/libcitadel/lib/tools.c b/libcitadel/lib/tools.c index ff35f9eca..14e43071a 100644 --- a/libcitadel/lib/tools.c +++ b/libcitadel/lib/tools.c @@ -292,7 +292,6 @@ size_t CtdlEncodeBase64(char *dest, const char *source, size_t sourcelen, int li int breaklength = 68; int readlength = 3 * breaklength / 4; - int t; int destoffset; int sourceoffset; int sourceremaining; @@ -318,7 +317,6 @@ size_t CtdlEncodeBase64(char *dest, const char *source, size_t sourcelen, int li dest[destoffset++] = '\n'; } - t = destoffset; destoffset += base64_encode_blockend(&(dest[destoffset]), &_state); } else {