diff options
author | Pierrick Charron <pierrick@php.net> | 2011-04-03 21:46:52 +0000 |
---|---|---|
committer | Pierrick Charron <pierrick@php.net> | 2011-04-03 21:46:52 +0000 |
commit | 1368364469571507b56358e3fe210aaaaea35a07 (patch) | |
tree | b41fc183aa432b16b67a1096881da00cc0b35fd1 /ext/imap/php_imap.c | |
parent | 9e05a9ad1310018a6f5797c7e32ae0d0cbd9cb69 (diff) | |
download | php-git-1368364469571507b56358e3fe210aaaaea35a07.tar.gz |
Fix common typos in the source code (Reported in Bug #54065)
# External libraries were excluded
# Thanks eitan at eitanadler dot com for the first patch :)
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r-- | ext/imap/php_imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index 099c383ed2..819ef51b6d 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -4291,7 +4291,7 @@ PHP_FUNCTION(imap_mime_header_decode) charset_token = offset; } /* Return the rest of the data as unencoded, as it was either unencoded or was missing separators - which rendered the the remainder of the string impossible for us to decode. */ + which rendered the remainder of the string impossible for us to decode. */ memcpy(text, &string[charset_token], end - charset_token); /* Extract unencoded text from string */ text[end - charset_token] = 0x00; MAKE_STD_ZVAL(myobject); |