* Change eventextra to extra in cel_psql.c and cel_odbc.c.
* Change EventExtra to Extra in cel_manager.c.
(issue ASTERISK-17190)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@350571
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
"Userfield: %s\r\n"
"Peer: %s\r\n"
"PeerAccount: %s\r\n"
- "EventExtra: %s\r\n",
+ "Extra: %s\r\n",
record.event_name,
record.account_code,
record.caller_id_num,
ast_copy_string(colbuf, record.peer, sizeof(colbuf));
} else if (strcmp(entry->celname, "amaflags") == 0) {
snprintf(colbuf, sizeof(colbuf), "%d", record.amaflag);
- } else if (strcmp(entry->celname, "eventextra") == 0) {
+ } else if (strcmp(entry->celname, "extra") == 0) {
ast_copy_string(colbuf, record.extra, sizeof(colbuf));
} else {
colbuf[0] = 0;
value = record.user_field;
} else if (strcmp(cur->name, "peer") == 0) {
value = record.peer;
- } else if (strcmp(cur->name, "eventextra") == 0) {
+ } else if (strcmp(cur->name, "extra") == 0) {
value = record.extra;
} else {
value = NULL;
; CEL_FORWARD = 25
; eventtime (timeval, includes microseconds)
; userdeftype (set only if eventtype == USER_DEFINED)
-; eventextra
; cid_name
; cid_num
; cid_ani
; amaflags (an int)
; userfield
; peer
+; extra
; The point of this module is to allow you log whatever you like in terms of the
; CEL variables. Do you want to log uniqueid? Then simply ensure that your
; CEL_FORWARD = 25
; eventtime (timeval, includes microseconds)
; userdeftype (set only if eventtype == USER_DEFINED)
-; eventextra
; cid_name
; cid_num
; cid_ani
; amaflags (an int)
; userfield
; peer
+; extra
[global]