diff options
Diffstat (limited to 'src/common/text.c')
-rw-r--r-- | src/common/text.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/text.c b/src/common/text.c index 94744e86..2f4323a2 100644 --- a/src/common/text.c +++ b/src/common/text.c @@ -2164,14 +2164,15 @@ text_find_format_string (char *name) } int -text_emit_by_name (char *name, session *sess, char *a, char *b, char *c, char *d) +text_emit_by_name (char *name, session *sess, time_t timestamp, + char *a, char *b, char *c, char *d) { int i = 0; i = pevent_find (name, &i); if (i >= 0) { - text_emit (i, sess, a, b, c, d, 0); + text_emit (i, sess, a, b, c, d, timestamp); return 1; } |