OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.7 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../libetpan/0001-fix-searchkey-subject.patch
  5. # Copyright (C) 2011 The OpenSDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. From ec8835073ad1da456d007c9a20366968cda32b6b Mon Sep 17 00:00:00 2001
  17. From: Nadeem Shehzad <Nadeem.Shehzad@securepoint.de>
  18. Date: Tue, 25 Jan 2011 12:04:33 +0100
  19. Subject: [PATCH 1/3] fix: searchkey subject corrected by passing correct type "subject" instead of "since".
  20. ---
  21. src/low-level/imap/mailimap_types_helper.c | 2 +-
  22. 1 files changed, 1 insertions(+), 1 deletions(-)
  23. diff --git a/src/low-level/imap/mailimap_types_helper.c b/src/low-level/imap/mailimap_types_helper.c
  24. index 7f0934b..b84e542 100644
  25. --- a/src/low-level/imap/mailimap_types_helper.c
  26. +++ b/src/low-level/imap/mailimap_types_helper.c
  27. @@ -800,7 +800,7 @@ mailimap_search_key_new_since(struct mailimap_date * sk_since)
  28. struct mailimap_search_key *
  29. mailimap_search_key_new_subject(char * sk_subject)
  30. {
  31. - return mailimap_search_key_new(MAILIMAP_SEARCH_KEY_SINCE, NULL, NULL,
  32. + return mailimap_search_key_new(MAILIMAP_SEARCH_KEY_SUBJECT, NULL, NULL,
  33. NULL, NULL, NULL, NULL, NULL, NULL,
  34. sk_subject, NULL, NULL, NULL, NULL,
  35. NULL, 0, NULL,
  36. --
  37. 1.6.3.3