[vlc-commits] access: fix typo

Thomas Guillem git at videolan.org
Wed Mar 15 10:49:14 CET 2017


vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Wed Mar 15 10:48:11 2017 +0100| [d360b527f0be56993d5d8d6ee71791b824314926] | committer: Thomas Guillem

access: fix typo

strcasecmp should replace strcoll if HAVE_STRCOLL is not defined.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=d360b527f0be56993d5d8d6ee71791b824314926
---

 src/input/access.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/input/access.c b/src/input/access.c
index bf5a22c..e1a03e6 100644
--- a/src/input/access.c
+++ b/src/input/access.c
@@ -29,7 +29,7 @@
 #include <stdlib.h>
 #include <string.h>
 #include <ctype.h>
-#ifdef HAVE_STRCOLL
+#ifndef HAVE_STRCOLL
 # define strcoll strcasecmp
 #endif
 



More information about the vlc-commits mailing list