summaryrefslogtreecommitdiff
path: root/lib/libc/string/strcoll.c
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1995-04-16 22:43:45 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1995-04-16 22:43:45 +0000
commitdb4dc2ff6ed80bb15a13432adb1150fe7fe9c9be (patch)
tree8b62b910ed2a760c7f60b2b297c6e15f296fbabf /lib/libc/string/strcoll.c
parent9e6dc28ab3c023269476ee8253e76f1efb919fcc (diff)
Notes
Diffstat (limited to 'lib/libc/string/strcoll.c')
-rw-r--r--lib/libc/string/strcoll.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/string/strcoll.c b/lib/libc/string/strcoll.c
index 544f9b946e05..915e649dbd6d 100644
--- a/lib/libc/string/strcoll.c
+++ b/lib/libc/string/strcoll.c
@@ -24,7 +24,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: strcoll.c,v 1.2 1995/02/16 17:01:09 ache Exp $
+ * $Id: strcoll.c,v 1.3 1995/02/18 01:38:58 ache Exp $
*/
#include <stdlib.h>
@@ -39,7 +39,7 @@ strcoll(s, s2)
char *tt, *t, *tt2, *t2;
if (__collate_load_error)
- return strcmp(s, s2);
+ return strcasecmp(s, s2);
len = len2 = 1;
ret = ret2 = 0;