Hello community,

here is the log from the commit of package evolution-ews for openSUSE:Factory 
checked in at 2019-05-10 09:16:28
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/evolution-ews (Old)
 and      /work/SRC/openSUSE:Factory/.evolution-ews.new.5148 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "evolution-ews"

Fri May 10 09:16:28 2019 rev:96 rq:701606 version:3.32.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/evolution-ews/evolution-ews.changes      
2019-05-03 22:08:03.110990073 +0200
+++ /work/SRC/openSUSE:Factory/.evolution-ews.new.5148/evolution-ews.changes    
2019-05-10 09:16:31.892162438 +0200
@@ -1,0 +2,6 @@
+Mon May  6 18:13:56 UTC 2019 - Bjørn Lie <bjorn....@gmail.com>
+
+- Update to version 3.32.2:
+  + Use lower-case "mailto:"; consistently in the code.
+
+-------------------------------------------------------------------

Old:
----
  evolution-ews-3.32.1.tar.xz

New:
----
  evolution-ews-3.32.2.tar.xz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ evolution-ews.spec ++++++
--- /var/tmp/diff_new_pack.veVusH/_old  2019-05-10 09:16:32.380163193 +0200
+++ /var/tmp/diff_new_pack.veVusH/_new  2019-05-10 09:16:32.380163193 +0200
@@ -20,7 +20,7 @@
 %define _version %(echo %{version} | grep -E -o '[0-9]+\.[0-9]+\.[0-9]+')
 
 Name:           evolution-ews
-Version:        3.32.1
+Version:        3.32.2
 Release:        0
 Summary:        Exchange Connector for Evolution, compatible with Exchange 
2007 and later
 License:        LGPL-2.1-only

++++++ evolution-ews-3.32.1.tar.xz -> evolution-ews-3.32.2.tar.xz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/evolution-ews-3.32.1/CMakeLists.txt 
new/evolution-ews-3.32.2/CMakeLists.txt
--- old/evolution-ews-3.32.1/CMakeLists.txt     2019-04-08 14:16:01.000000000 
+0200
+++ new/evolution-ews-3.32.2/CMakeLists.txt     2019-05-06 12:58:46.000000000 
+0200
@@ -4,7 +4,7 @@
 cmake_policy(VERSION 3.1)
 
 project(evolution-ews
-       VERSION 3.32.1
+       VERSION 3.32.2
        LANGUAGES C)
 set(PROJECT_BUGREPORT "https://gitlab.gnome.org/GNOME/evolution-ews/issues/";)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/evolution-ews-3.32.1/NEWS 
new/evolution-ews-3.32.2/NEWS
--- old/evolution-ews-3.32.1/NEWS       2019-04-08 14:16:01.000000000 +0200
+++ new/evolution-ews-3.32.2/NEWS       2019-05-06 12:58:46.000000000 +0200
@@ -1,3 +1,12 @@
+Evolution-EWS 3.32.2 2019-05-06
+-------------------------------
+
+Bug Fixes:
+       M!2 - Correct memory leak and typo in e_ews_autodiscover_ws_url() 
(Дилян Палаузов)
+
+Miscellaneous:
+       Use lower-case "mailto:"; consistently in the code (Milan Crha)
+
 Evolution-EWS 3.32.1 2019-04-08
 -------------------------------
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/evolution-ews-3.32.1/src/calendar/e-cal-backend-ews-utils.c 
new/evolution-ews-3.32.2/src/calendar/e-cal-backend-ews-utils.c
--- old/evolution-ews-3.32.1/src/calendar/e-cal-backend-ews-utils.c     
2019-04-08 14:16:01.000000000 +0200
+++ new/evolution-ews-3.32.2/src/calendar/e-cal-backend-ews-utils.c     
2019-05-06 12:58:46.000000000 +0200
@@ -915,7 +915,7 @@
        if (!org)
                return NULL;
 
-       if (g_ascii_strncasecmp (org, "MAILTO:", 7) == 0)
+       if (g_ascii_strncasecmp (org, "mailto:";, 7) == 0)
                org = org + 7;
 
        org_email_address = org;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/evolution-ews-3.32.1/src/calendar/e-cal-backend-ews.c 
new/evolution-ews-3.32.2/src/calendar/e-cal-backend-ews.c
--- old/evolution-ews-3.32.1/src/calendar/e-cal-backend-ews.c   2019-04-08 
14:16:01.000000000 +0200
+++ new/evolution-ews-3.32.2/src/calendar/e-cal-backend-ews.c   2019-05-06 
12:58:46.000000000 +0200
@@ -3248,7 +3248,7 @@
                attendee_str = icalproperty_get_organizer (attendee);
 
                if (attendee_str) {
-                       if (!strncasecmp (attendee_str, "MAILTO:", 7))
+                       if (!strncasecmp (attendee_str, "mailto:";, 7))
                                attendee_mail = attendee_str + 7;
                        else
                                attendee_mail = attendee_str;
@@ -3265,7 +3265,7 @@
                attendee_str = icalproperty_get_attendee (attendee);
 
                if (attendee_str != NULL) {
-                       if (!strncasecmp (attendee_str, "MAILTO:", 7))
+                       if (!strncasecmp (attendee_str, "mailto:";, 7))
                                attendee_mail = attendee_str + 7;
                        else
                                attendee_mail = attendee_str;
@@ -3738,7 +3738,7 @@
 
                org_prop = icalcomponent_get_first_property (subcomp, 
ICAL_ORGANIZER_PROPERTY);
                org = icalproperty_get_organizer (org_prop);
-               if (!g_ascii_strncasecmp (org, "MAILTO:", 7))
+               if (!g_ascii_strncasecmp (org, "mailto:";, 7))
                        org_email = (org) + 7;
                else
                        org_email = org;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/evolution-ews-3.32.1/src/server/e-ews-connection.c 
new/evolution-ews-3.32.2/src/server/e-ews-connection.c
--- old/evolution-ews-3.32.1/src/server/e-ews-connection.c      2019-04-08 
14:16:01.000000000 +0200
+++ new/evolution-ews-3.32.2/src/server/e-ews-connection.c      2019-05-06 
12:58:46.000000000 +0200
@@ -3313,7 +3313,8 @@
        GSimpleAsyncResult *simple;
        struct _autodiscover_data *ad;
        xmlOutputBuffer *buf;
-       gchar *url1, *url2, *url3, *url4, *url5;
+       gchar *url1, *url2, *url3, *url4;
+       const gchar *url5;
        gchar *domain;
        xmlDoc *doc;
        EEwsConnection *cnc;
@@ -3367,8 +3368,8 @@
 
                /* outlook.office365.com has its autodiscovery at outlook.com */
                if (host && g_ascii_strcasecmp (host, "outlook.office365.com") 
== 0 &&
-                  domain && g_ascii_strcasecmp (host, "outlook.com") != 0) {
-                       url5 = g_strdup_printf 
("https://outlook.com/autodiscover/autodiscover.xml";);
+                   domain && g_ascii_strcasecmp (domain, "outlook.com") != 0) {
+                       url5 = 
"https://outlook.com/autodiscover/autodiscover.xml";;
                }
 
                soup_uri_free (soup_uri);


Reply via email to