mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-10 03:48:34 +00:00
Use compatible names for event extra data for various CEL backends.
* 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
This commit is contained in:
@@ -234,7 +234,7 @@ static void pgsql_log(const struct ast_event *event, void *userdata)
|
||||
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;
|
||||
|
||||
Reference in New Issue
Block a user