Loading

Paste #pd33certm

  1. diff --git a/src/string.cpp b/src/string.cpp
  2. index 4c714a2e02..fc27d8b5ed 100644
  3. --- a/src/string.cpp
  4. +++ b/src/string.cpp
  5. @@ -595,7 +595,7 @@ int strnatcmp(const char *s1, const char *s2, bool ignore_garbage_at_front)
  6.  #endif
  7.  
  8.     /* Do a normal comparison if ICU is missing or if we cannot create a collator. */
  9. -   return strcasecmp(s1, s2);
  10. +   return strcoll(s1, s2);
  11.  }
  12.  
  13.  #ifdef WITH_UNISCRIBE
  14.  

Comments