diff options
author | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-06-09 20:36:31 +0800 |
---|---|---|
committer | Jeffrey Stedfast <fejj@src.gnome.org> | 2004-06-09 20:36:31 +0800 |
commit | ee0597837b60463bd9cecef901b1befd7e8a3eb4 (patch) | |
tree | 55a0e5a995796234c387c4ffc70b3cd193a32848 /camel | |
parent | e1f8409ef0db5c9d54213235e088c9e6e30583a1 (diff) | |
download | gsoc2013-evolution-ee0597837b60463bd9cecef901b1befd7e8a3eb4.tar gsoc2013-evolution-ee0597837b60463bd9cecef901b1befd7e8a3eb4.tar.gz gsoc2013-evolution-ee0597837b60463bd9cecef901b1befd7e8a3eb4.tar.bz2 gsoc2013-evolution-ee0597837b60463bd9cecef901b1befd7e8a3eb4.tar.lz gsoc2013-evolution-ee0597837b60463bd9cecef901b1befd7e8a3eb4.tar.xz gsoc2013-evolution-ee0597837b60463bd9cecef901b1befd7e8a3eb4.tar.zst gsoc2013-evolution-ee0597837b60463bd9cecef901b1befd7e8a3eb4.zip |
oops, decrement the gpg->padding width
svn path=/trunk/; revision=26266
Diffstat (limited to 'camel')
-rw-r--r-- | camel/camel-gpg-context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camel/camel-gpg-context.c b/camel/camel-gpg-context.c index 9623b7d347..43e34ac408 100644 --- a/camel/camel-gpg-context.c +++ b/camel/camel-gpg-context.c @@ -208,20 +208,20 @@ struct _GpgCtx { unsigned int bad_passwds:2; - unsigned int nodata:1; unsigned int hadsig:1; unsigned int badsig:1; unsigned int errsig:1; unsigned int goodsig:1; unsigned int validsig:1; unsigned int nopubkey:1; + unsigned int nodata:1; unsigned int trust:3; unsigned int diagflushed:1; unsigned int utf8:1; - unsigned int padding:11; + unsigned int padding:10; }; static struct _GpgCtx * |