aboutsummaryrefslogtreecommitdiffstats
path: root/rpa.c
diff options
context:
space:
mode:
authorMatthias Andree <matthias.andree@gmx.de>2006-03-13 23:35:29 +0000
committerMatthias Andree <matthias.andree@gmx.de>2006-03-13 23:35:29 +0000
commit20a0097f74bfdec16c17dd7d3eb5968f81ec90c1 (patch)
tree70fa2b57d137718f66229fa28ad12528991e3fb3 /rpa.c
parentb7e145bdf22387e6cba4b54099407102ff310967 (diff)
downloadfetchmail-20a0097f74bfdec16c17dd7d3eb5968f81ec90c1.tar.gz
fetchmail-20a0097f74bfdec16c17dd7d3eb5968f81ec90c1.tar.bz2
fetchmail-20a0097f74bfdec16c17dd7d3eb5968f81ec90c1.zip
Rename a methods and some variables to steer clear of C++ namespace.
svn path=/branches/BRANCH_6-3/; revision=4733
Diffstat (limited to 'rpa.c')
-rw-r--r--rpa.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/rpa.c b/rpa.c
index cb61b3f2..e52a889e 100644
--- a/rpa.c
+++ b/rpa.c
@@ -518,7 +518,7 @@ int rxlen;
static int DecBase64(bufp)
unsigned char *bufp;
{
- unsigned int new, bits=0, cnt=0, i, part=0;
+ unsigned int newx, bits=0, cnt=0, i, part=0;
unsigned char ch;
unsigned char* outp=bufp;
unsigned char* inp=bufp;
@@ -526,16 +526,16 @@ unsigned char *bufp;
{
if ((ch != '=') && (ch != ' ') && (ch != '\n') && (ch != '\r'))
{
- if ((ch>='A') && (ch <= 'Z')) new = ch - 'A';
- else if ((ch>='a') && (ch <= 'z')) new = ch - 'a' + 26;
- else if ((ch>='0') && (ch <= '9')) new = ch - '0' + 52;
- else if ( ch=='+' ) new = 62;
- else if ( ch=='/' ) new = 63;
+ if ((ch>='A') && (ch <= 'Z')) newx = ch - 'A';
+ else if ((ch>='a') && (ch <= 'z')) newx = ch - 'a' + 26;
+ else if ((ch>='0') && (ch <= '9')) newx = ch - '0' + 52;
+ else if ( ch=='+' ) newx = 62;
+ else if ( ch=='/' ) newx = 63;
else {
report(stderr, GT_("dec64 error at char %d: %x\n"), inp - bufp, ch);
return(0);
}
- part=((part & 0x3F)*64) + new;
+ part=((part & 0x3F)*64) + newx;
bits += 6;
if (bits >= 8)
{