Andrei,
did you setup a different commit mailer for sip-router git repository than the
one that we had for the ser git repository?
If so, do you think you could modify it to include the name of the branch
in the subject of the message?
Jan.
Hi!
Congratulations - I wondered the last days why K. lists are so quiet -
now I now the party is happening here :-)
I have a question regarding TLS. In K TLS is part of core. I think in
ser it is a module. So, as K uses the ser core, probably there is also
need for the TLS module?
klaus
Module: sip-router
Branch: andrei/dbk_lib
Commit: 7c5b8e41204d09970b82a16417dad292e175dfb5
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=7c5b8e4…
Author: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Date: Fri Nov 21 12:22:58 2008 +0100
Merge branch 'fixups' into db_lib
* fixups:
fixups: call them even for 0 params. functions
more PV API integration
---
I've modified the scrip that generates the commit messages, so that
it will not generate emails for merged commits.
Now you should see only new commits messages and merge notices.
For nice merge notices (including a changelog style summary of the
merged commits), everybody should make sure that they have:
[merge]
log = true
in your ~/.gitconfig.
A quick way to check for it is:
git config --get merge.log
and to set it:
git config --global merge.log true
You could also add always --log to git-merge and git-pull, but there's
a high chance that you will forget it at some point.
Andrei
Module: sip-router
Branch: andrei/fixups
Commit: e692101f920b5221112fcf0dd688c64dfbcfe3b4
URL: http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=e692101…
Author: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Committer: Andrei Pelinescu-Onciul <andrei(a)iptel.org>
Date: Fri Nov 21 11:49:48 2008 +0100
fixups: call them even for 0 params. functions
- kamailio compatibility: fixups for function with no parameters
can be used
---
route.c | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
diff --git a/route.c b/route.c
index 5c39764..b57364b 100644
--- a/route.c
+++ b/route.c
@@ -512,6 +512,11 @@ static int fix_actions(struct action* a)
if (cmd && cmd->c.fixup) {
int i;
DBG("fixing %s()\n", cmd->c.name);
+ if (t->val[1].u.number==0) {
+ ret = cmd->c.fixup(0, 0);
+ if (ret < 0)
+ return ret;
+ }
/* type cast NUMBER to STRING, old modules may expect
* all STRING params during fixup */
for (i=0; i<t->val[1].u.number; i++) {