summaryrefslogtreecommitdiff
path: root/mail/cclient-maildir/files/patch-ad
diff options
context:
space:
mode:
authorKelly Yancey <kbyanc@FreeBSD.org>2000-12-18 09:54:34 +0000
committerKelly Yancey <kbyanc@FreeBSD.org>2000-12-18 09:54:34 +0000
commit82532935fcfd751b95ee325edf50d69463faa161 (patch)
treebf6da21c6be00d6fcf86618b81760a64eb246b56 /mail/cclient-maildir/files/patch-ad
parentUpdate to version 0.895. (diff)
Remove the cclient-maildir port as the third-party patches have become
too out-of-sync with the c-client codebase to maintain.
Notes
Notes: svn path=/head/; revision=36055
Diffstat (limited to 'mail/cclient-maildir/files/patch-ad')
-rw-r--r--mail/cclient-maildir/files/patch-ad42
1 files changed, 0 insertions, 42 deletions
diff --git a/mail/cclient-maildir/files/patch-ad b/mail/cclient-maildir/files/patch-ad
deleted file mode 100644
index 80bf50b061e0..000000000000
--- a/mail/cclient-maildir/files/patch-ad
+++ /dev/null
@@ -1,42 +0,0 @@
---- src/osdep/unix/maildir.h.orig Mon Jul 3 22:51:43 2000
-+++ src/osdep/unix/maildir.h Mon Jul 3 22:52:39 2000
-@@ -52,5 +52,5 @@
- char *maildir_file (char *dst,char *name);
- void maildir_copynew (const char *mailbox);
- int maildir_select (struct direct *name);
--int maildir_namesort (struct direct **d1,struct direct **d2);
-+int maildir_namesort (const void *d1,const void *d2);
- void maildir_listwork(char *name, MAILSTREAM *stream, char *s2, char *subdir, int flag);
---- src/osdep/unix/maildir.c.orig Mon Jul 3 22:53:24 2000
-+++ src/osdep/unix/maildir.c Mon Jul 3 22:57:50 2000
-@@ -417,7 +417,7 @@
-
- mail_exists(stream, i+1);
- /* if newly seen, add to list */
-- (elt = mail_elt (stream, i + 1))->maildirp = (long) cpystr (names[i]->d_name);
-+ (elt = mail_elt (stream, i + 1))->maildirp = cpystr (names[i]->d_name);
- elt->valid = T;
-
- /* grab the flags */
-@@ -540,9 +540,10 @@
- return NIL;
- }
-
--int maildir_namesort (struct direct **d1,struct direct **d2)
-+int maildir_namesort (const void *d1,const void *d2)
- {
-- return strcmp ((*d1)->d_name,(*d2)->d_name);
-+ return strcmp ((*(struct direct **) d1)->d_name,
-+ (*(struct direct **) d2)->d_name);
- }
-
-
-@@ -786,7 +787,7 @@
- }
- /* update the file name in cache */
- fs_give ((void **) &elt->maildirp);
-- elt->maildirp = (long) cpystr (fn);
-+ elt->maildirp = cpystr (fn);
-
- /* fix the UID on the file */
- tbuf.actime = elt->private.uid;