summaryrefslogtreecommitdiff
path: root/pjlib/src/pj/config.c
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-09-13 22:48:37 +0000
committerBenny Prijono <bennylp@teluu.com>2006-09-13 22:48:37 +0000
commita0fe9be8add2f491e7c41fbbbee565921a02acc1 (patch)
tree2edce42628732598162e316679f89ca7b60c8ebb /pjlib/src/pj/config.c
parentb6b6ff95f348d4812f1b274141eb290cb849980e (diff)
SIP methods are now compared case-sensitively (previously it was case-insensitive) because the standard says so. There's no ill effect of the old behavior, but it's still important that we do things according to what the standard says.
Also a little change in string implementation (use memcmp() instead of strncmp()), an increase the version number from 0.5.7.6 to 0.5.7.7. git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@713 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib/src/pj/config.c')
-rw-r--r--pjlib/src/pj/config.c2
1 files changed, 1 insertions, 1 deletions
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)
{