journal: drop path name from cursor strings

we had this mostly for debugging purposes and it was ignored when
parsing anyway, so let's get rid of it
This commit is contained in:
Lennart Poettering 2012-10-10 22:24:28 +02:00
parent 9a526a06bd
commit 934a316cbf
1 changed files with 2 additions and 3 deletions

View File

@ -940,12 +940,11 @@ _public_ int sd_journal_get_cursor(sd_journal *j, char **cursor) {
sd_id128_to_string(o->entry.boot_id, bid);
if (asprintf(cursor,
"s=%s;i=%llx;b=%s;m=%llx;t=%llx;x=%llx;p=%s",
"s=%s;i=%llx;b=%s;m=%llx;t=%llx;x=%llx",
sid, (unsigned long long) le64toh(o->entry.seqnum),
bid, (unsigned long long) le64toh(o->entry.monotonic),
(unsigned long long) le64toh(o->entry.realtime),
(unsigned long long) le64toh(o->entry.xor_hash),
path_get_file_name(j->current_file->path)) < 0)
(unsigned long long) le64toh(o->entry.xor_hash)) < 0)
return -ENOMEM;
return 1;