Module: sip-router
Branch: master
Commit: b8fba98c599c280b76e9d0aa954fbf24f2ca3c13
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=b8fba98…
Author: Juha Heinanen <jh(a)tutpro.com>
Committer: Juha Heinanen <jh(a)tutpro.com>
Date: Wed Aug 10 16:08:04 2011 +0300
lib/srdb1/schema: fixed size of pua table call_id field
---
lib/srdb1/schema/pr_pua.xml | 2 +-
modules_k/pua/pua.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/srdb1/schema/pr_pua.xml b/lib/srdb1/schema/pr_pua.xml
index 55b4767..f50f486 100644
--- a/lib/srdb1/schema/pr_pua.xml
+++ b/lib/srdb1/schema/pr_pua.xml
@@ -95,7 +95,7 @@
<column>
<name>call_id</name>
<type>string</type>
- <size>&uri_len;</size>
+ <size>&callid_len;</size>
<description>Call ID</description>
</column>
diff --git a/modules_k/pua/pua.c b/modules_k/pua/pua.c
index c507797..9a2cd9a 100644
--- a/modules_k/pua/pua.c
+++ b/modules_k/pua/pua.c
@@ -53,7 +53,7 @@
#include "pidf.h"
MODULE_VERSION
-#define PUA_TABLE_VERSION 6
+#define PUA_TABLE_VERSION 7
struct tm_binds tmb;
htable_t* HashT= NULL;