summaryrefslogtreecommitdiff
path: root/pjlib
diff options
context:
space:
mode:
Diffstat (limited to 'pjlib')
-rw-r--r--pjlib/include/pj/string_i.h6
-rw-r--r--pjlib/src/pj/config.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/pjlib/include/pj/string_i.h b/pjlib/include/pj/string_i.h
index 57cae7ba..4cc3c119 100644
--- a/pjlib/include/pj/string_i.h
+++ b/pjlib/include/pj/string_i.h
@@ -141,7 +141,7 @@ PJ_IDEF(int) pj_strcmp( const pj_str_t *str1, const pj_str_t *str2)
if (diff) {
return diff > 0 ? 1 : -1;
} else if (str1->ptr && str1->slen) {
- return pj_ansi_strncmp(str1->ptr, str2->ptr, str1->slen);
+ return memcmp(str1->ptr, str2->ptr, str1->slen);
} else {
return 0;
}
@@ -151,7 +151,7 @@ PJ_IDEF(int) pj_strncmp( const pj_str_t *str1, const pj_str_t *str2,
pj_size_t len)
{
if (str1->ptr && str2->ptr)
- return pj_ansi_strncmp(str1->ptr, str2->ptr, len);
+ return memcmp(str1->ptr, str2->ptr, len);
else if (str2->ptr)
return str2->slen==0 ? 0 : -1;
else if (str1->ptr)
@@ -166,7 +166,7 @@ PJ_IDEF(int) pj_strncmp2( const pj_str_t *str1, const char *str2,
if (len == 0)
return 0;
else if (str1->ptr && str2)
- return pj_ansi_strncmp(str1->ptr, str2, len);
+ return memcmp(str1->ptr, str2, len);
else if (str1->ptr)
return str1->slen==0 ? 0 : 1;
else if (str2)
diff --git a/pjlib/src/pj/config.c b/pjlib/src/pj/config.c
index 8a372524..9e74d723 100644
--- a/pjlib/src/pj/config.c
+++ b/pjlib/src/pj/config.c
@@ -21,7 +21,7 @@
#include <pj/ioqueue.h>
static const char *id = "config.c";
-const char *PJ_VERSION = "0.5.7.6";
+const char *PJ_VERSION = "0.5.7.7";
PJ_DEF(void) pj_dump_config(void)
{