Remove an extra \r\n from manager user events. (issue #8955, mnicholson)

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@53042 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant
2007-01-31 18:18:25 +00:00
parent 0bc7ef3b06
commit 43e68cac9a

View File

@@ -83,7 +83,7 @@ static int userevent_exec(struct ast_channel *chan, void *data)
buflen += 2;
}
manager_event(EVENT_FLAG_USER, "UserEvent", "UserEvent: %s\r\n%s\r\n", args.eventname, buf);
manager_event(EVENT_FLAG_USER, "UserEvent", "UserEvent: %s\r\n%s", args.eventname, buf);
ast_module_user_remove(u);