projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2ca242b
)
Missed one. Formatting only.
author
Sean Bright
<sean@malleable.com>
Fri, 11 Jul 2008 18:32:26 +0000
(18:32 +0000)
committer
Sean Bright
<sean@malleable.com>
Fri, 11 Jul 2008 18:32:26 +0000
(18:32 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@130167
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
channels/chan_sip.c
patch
|
blob
|
history
diff --git
a/channels/chan_sip.c
b/channels/chan_sip.c
index
245d757
..
5801607
100644
(file)
--- a/
channels/chan_sip.c
+++ b/
channels/chan_sip.c
@@
-2601,7
+2601,7
@@
static int find_sip_method(const char *msg)
if (ast_strlen_zero(msg))
return 0;
- for (i = 1; i < (ARRAY_LEN(sip_methods)) && !res; i++) {
+ for (i = 1; i < ARRAY_LEN(sip_methods) && !res; i++) {
if (method_match(i, msg))
res = sip_methods[i].id;
}