diff options
author | Larry Ewing <lewing@helixcode.com> | 2000-05-03 11:35:31 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2000-05-03 11:35:31 +0800 |
commit | f27621c3a268ed5ea9ff320d6d049bac76e28a37 (patch) | |
tree | d7f32aeb183c8409b65243429ca500dc5f99386e /camel/camel-mime-utils.c | |
parent | c1f78a7de7d2cd2cb9d3093189caee4686058f5e (diff) | |
download | gsoc2013-evolution-f27621c3a268ed5ea9ff320d6d049bac76e28a37.tar gsoc2013-evolution-f27621c3a268ed5ea9ff320d6d049bac76e28a37.tar.gz gsoc2013-evolution-f27621c3a268ed5ea9ff320d6d049bac76e28a37.tar.bz2 gsoc2013-evolution-f27621c3a268ed5ea9ff320d6d049bac76e28a37.tar.lz gsoc2013-evolution-f27621c3a268ed5ea9ff320d6d049bac76e28a37.tar.xz gsoc2013-evolution-f27621c3a268ed5ea9ff320d6d049bac76e28a37.tar.zst gsoc2013-evolution-f27621c3a268ed5ea9ff320d6d049bac76e28a37.zip |
fix typo when dereferencing saveoffset.
2000-05-02 Larry Ewing <lewing@helixcode.com>
* camel-mime-utils.c (header_decode_date): fix typo when
dereferencing saveoffset.
svn path=/trunk/; revision=2771
Diffstat (limited to 'camel/camel-mime-utils.c')
-rw-r--r-- | camel/camel-mime-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/camel/camel-mime-utils.c b/camel/camel-mime-utils.c index 7967ff8e45..6c9645b6c8 100644 --- a/camel/camel-mime-utils.c +++ b/camel/camel-mime-utils.c @@ -1845,7 +1845,7 @@ header_decode_date(const char *in, int *saveoffset) time_t t; if (in == NULL) { - if (*saveoffset) + if (saveoffset) *saveoffset = 0; return 0; } |