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.5 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../libetpan/0003-fix-date_time_send.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 5e442095eb236f81a50f61ce0c37079c40c0d501 Mon Sep 17 00:00:00 2001
  17. From: Nadeem Shehzad <Nadeem.Shehzad@securepoint.de>
  18. Date: Tue, 25 Jan 2011 12:14:53 +0100
  19. Subject: [PATCH 3/3] fix: date_time_send by assigning correct value to date_year_send i.e. send rather than month.
  20. ---
  21. src/low-level/imap/mailimap_sender.c | 2 +-
  22. 1 files changed, 1 insertions(+), 1 deletions(-)
  23. diff --git a/src/low-level/imap/mailimap_sender.c b/src/low-level/imap/mailimap_sender.c
  24. index 8c9f6e6..3ab5603 100644
  25. --- a/src/low-level/imap/mailimap_sender.c
  26. +++ b/src/low-level/imap/mailimap_sender.c
  27. @@ -907,7 +907,7 @@ mailimap_date_time_send(mailstream * fd,
  28. if (r != MAILIMAP_NO_ERROR)
  29. return r;
  30. - r = mailimap_date_year_send(fd, date_time->dt_month);
  31. + r = mailimap_date_year_send(fd, date_time->dt_year);
  32. if (r != MAILIMAP_NO_ERROR)
  33. return r;
  34. --
  35. 1.6.3.3