typo
authorMichael Wallner <mike@php.net>
Thu, 6 Apr 2006 10:38:58 +0000 (10:38 +0000)
committerMichael Wallner <mike@php.net>
Thu, 6 Apr 2006 10:38:58 +0000 (10:38 +0000)
http_info_api.c

index 95263b3bb17bc4809f7d2c05d4c7e632e5dd9885..793acd11be56a941d88cc4a669c88726ef502695 100644 (file)
@@ -60,7 +60,7 @@ inline char *php_memnstr(char *h, char *n, size_t n_len, char *e)
 {
        char *p;
        
-       if (e > h && b_len > 0) {
+       if (e > h && n_len > 0) {
                while (h != e) {
                        if (*h == *n) {
                                for (p = n; *p == h[p-n]; ++p) {