summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2002-09-19 16:59:11 +0000
committerDerick Rethans <derick@php.net>2002-09-19 16:59:11 +0000
commit733597e29165b411bd9dea5be6a7e6e0b6725d83 (patch)
tree06772ec24e37c4fe09489a581712e0abdfd3d003
parent19f43f37802bb490fcab65d0dc92b779f44d7447 (diff)
downloadphp-git-733597e29165b411bd9dea5be6a7e6e0b6725d83.tar.gz
- Fix typo
-rw-r--r--ext/imap/php_imap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c
index 36db11f899..488b3bef1c 100644
--- a/ext/imap/php_imap.c
+++ b/ext/imap/php_imap.c
@@ -2309,7 +2309,7 @@ PHP_FUNCTION(imap_utf7_decode)
break;
case ST_DECODE2:
outp[1] = UNB64(*inp);
- c = outpp[1] >> 2;
+ c = outp[1] >> 2;
*outp++ |= c;
*outp <<= 6;
state = ST_DECODE3;