Merge branch 'tizen' into tizen_5.5 93/234993/1 accepted/tizen/5.5/unified/20200603.230103 submit/tizen_5.5/20200601.114801 submit/tizen_5.5/20200602.093504
authorMateusz Moscicki <m.moscicki2@partner.samsung.com>
Mon, 1 Jun 2020 10:34:09 +0000 (12:34 +0200)
committerMateusz Moscicki <m.moscicki2@partner.samsung.com>
Mon, 1 Jun 2020 10:34:09 +0000 (12:34 +0200)
Change-Id: Ic9c38d8dc354da3f82e7c9e10fb54eea092f7467

1  2 
packaging/crash-worker.spec
src/shared/config.c
src/shared/config.h

@@@ -13,7 -13,7 +13,7 @@@
  
  Name:           crash-worker
  Summary:        Coredump handler and report generator for Tizen
- Version:        5.5.39
 -Version:        6.0.18
++Version:        5.5.40
  Release:        1
  Group:          Framework/system
  License:        Apache-2.0 and BSD-2-Clause and MIT
Simple merge
  #define DUMP_SO_INFO         1
  #define ALLOW_ZIP            1
  #define LEGACY_NOTIFICATION  0
+ #define RELEASE_EARLY        0
  
  #define CRASH_SECTION        "CrashManager"
 -#define EXCLUDEPATHS_SECTION  "ExcludePaths"
 +
 +/* ExcludePaths section name must be lowercase with iniparser 3.x.
 + *
 + * This is to workaround for iniparser 3.x bug, where loaded strings
 + * are converted to lowercase, but query string is not, precisely
 + * getsecnkeys() does strcmp(lowercase-key-in-db, user-provided-str).
 + */
 +#define EXCLUDEPATHS_SECTION "excludepaths"
  
  enum ReportType {
        REP_TYPE_INVALID = -1,