From: Lennart Poettering Date: Wed, 10 Oct 2012 20:24:28 +0000 (+0200) Subject: journal: drop path name from cursor strings X-Git-Tag: v195~138 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=934a316cbf68c46f05b7ce0b35fc312eca786747 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 --- diff --git a/src/journal/sd-journal.c b/src/journal/sd-journal.c index 6764f2ee6..9e594a2cf 100644 --- a/src/journal/sd-journal.c +++ b/src/journal/sd-journal.c @@ -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;