Module Name:    src
Committed By:   christos
Date:           Thu Nov 12 17:31:43 UTC 2015

Modified Files:
        src/common/lib/libc/stdlib: _strtol.h

Log Message:
Fix capitalization


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 src/common/lib/libc/stdlib/_strtol.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/common/lib/libc/stdlib/_strtol.h
diff -u src/common/lib/libc/stdlib/_strtol.h:1.8 src/common/lib/libc/stdlib/_strtol.h:1.9
--- src/common/lib/libc/stdlib/_strtol.h:1.8	Thu Nov 12 12:23:51 2015
+++ src/common/lib/libc/stdlib/_strtol.h	Thu Nov 12 12:31:43 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: _strtol.h,v 1.8 2015/11/12 17:23:51 christos Exp $ */
+/* $NetBSD: _strtol.h,v 1.9 2015/11/12 17:31:43 christos Exp $ */
 
 /*-
  * Copyright (c) 1990, 1993
@@ -106,7 +106,7 @@ INT_FUNCNAME(_int_, _FUNCNAME, _l)(const
 		s += 2;
 		base = 16;
 	} else if ((base == 0 || base == 2) &&
-	    c == '0' && (*s == 'b' || *s == 'b')) {
+	    c == '0' && (*s == 'b' || *s == 'B')) {
 		c = s[1];
 		s += 2;
 		base = 2;

Reply via email to