aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-mime-filter-basic.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-01-18 03:21:11 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-01-18 03:21:11 +0800
commiteea1e59abbbc3e8d26c454d13a9fb59d88e652e2 (patch)
treec0ac419b8c1e6f753f52b75775e78b559379f8be /camel/camel-mime-filter-basic.h
parentbda8b73fe19ec3881f79f8d3d8cfc575dceef6de (diff)
downloadgsoc2013-evolution-eea1e59abbbc3e8d26c454d13a9fb59d88e652e2.tar
gsoc2013-evolution-eea1e59abbbc3e8d26c454d13a9fb59d88e652e2.tar.gz
gsoc2013-evolution-eea1e59abbbc3e8d26c454d13a9fb59d88e652e2.tar.bz2
gsoc2013-evolution-eea1e59abbbc3e8d26c454d13a9fb59d88e652e2.tar.lz
gsoc2013-evolution-eea1e59abbbc3e8d26c454d13a9fb59d88e652e2.tar.xz
gsoc2013-evolution-eea1e59abbbc3e8d26c454d13a9fb59d88e652e2.tar.zst
gsoc2013-evolution-eea1e59abbbc3e8d26c454d13a9fb59d88e652e2.zip
Stop uudecoding once the CAMEL_UUDECODE_STATE_END state bit gets set. Set
2002-01-17 Jeffrey Stedfast <fejj@ximian.com> * camel-mime-filter-basic.c (filter): Stop uudecoding once the CAMEL_UUDECODE_STATE_END state bit gets set. Set the CAMEL_UUDECODE_STATE_BEGIN state bit once we find the begin line. (reset): No longer have uu_begin or uulen state variables, these are now stuffed into a single state variable. * camel-mime-utils.c (uudecode_step): No longer needs a uulen argument and also keeps track of whether or not the end of the encoded data has been found in 'state'. (uuencode_step): Now stuffs uulen into state so that the uulen argument is no longer needed. (uuencode_close): Same. svn path=/trunk/; revision=15349
Diffstat (limited to 'camel/camel-mime-filter-basic.h')
-rw-r--r--camel/camel-mime-filter-basic.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/camel/camel-mime-filter-basic.h b/camel/camel-mime-filter-basic.h
index 939da6c190..1ec5f2ec17 100644
--- a/camel/camel-mime-filter-basic.h
+++ b/camel/camel-mime-filter-basic.h
@@ -45,11 +45,9 @@ struct _CamelMimeFilterBasic {
CamelMimeFilterBasicType type;
- gboolean uu_begin;
unsigned char uubuf[60];
int state;
int save;
- char uulen;
};
struct _CamelMimeFilterBasicClass {