aboutsummaryrefslogtreecommitdiffstats
path: root/main/http.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-04-23 20:49:18 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-04-23 20:49:18 +0000
commit2b995a79da30cb9dff486b80f87d10e75e2fa1f3 (patch)
treecc64f33a6e37079e8f995677771355fc024def96 /main/http.c
parent2e1b2acea25248b105d461118c3083e147ec6d7a (diff)
Fix an issue that caused getting the correct next channel to not always work.
Also, remove setting the amount of time to wait for a digit from 5 seconds back down to 1/10 of a second. I believe this was so the beep didn't get played over and over really fast, but a while back I put in another fix for that issue. (closes issue #12498) Reported by: jsmith Patches: app_chanspy_channel_walk.trunk.patch uploaded by jsmith (license 15) git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@114597 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/http.c')
-rw-r--r--main/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/http.c b/main/http.c
index e335086bb..2c7683e3b 100644
--- a/main/http.c
+++ b/main/http.c
@@ -437,7 +437,7 @@ static void *ast_httpd_helper_thread(void *data)
/* If we got a FireFox cookie string, the name's right
after "Cookie: " */
- vname = cookie + 8;
+ vname = cookie + 8;
/* If we got an IE cookie string, we need to skip to
past the version to get to the name */