diff options
author | Russ Cox <rsc@swtch.com> | 2007-08-22 11:21:52 -0400 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2007-08-22 11:21:52 -0400 |
commit | 6b0a42ed047c3a9f9719294c64285b131a3d736e (patch) | |
tree | 2313ea1a7e37e353fca0baaf8e6a7a61c209d4fe /src/cmd/upas | |
parent | 47ede89e4a832de2dada80599c1260f456275f19 (diff) | |
download | plan9port-6b0a42ed047c3a9f9719294c64285b131a3d736e.tar.gz plan9port-6b0a42ed047c3a9f9719294c64285b131a3d736e.tar.bz2 plan9port-6b0a42ed047c3a9f9719294c64285b131a3d736e.zip |
mailfs: fix handling of FLAGS response (Robert Vollmert)
Diffstat (limited to 'src/cmd/upas')
-rw-r--r-- | src/cmd/upas/nfs/imap.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/cmd/upas/nfs/imap.c b/src/cmd/upas/nfs/imap.c index 8eec7255..e81ab270 100644 --- a/src/cmd/upas/nfs/imap.c +++ b/src/cmd/upas/nfs/imap.c @@ -1270,8 +1270,12 @@ xexists(Imap *z, Sx *sx) static void xflags(Imap *z, Sx *sx) { - if(z->box) - z->box->flags = parseflags(sx->sx[2]); + /* + * This response contains in sx->sx[2] the list of flags + * that can be validly attached to messages in z->box. + * We don't have any use for this list, since we + * use only the standard flags. + */ } static void |