Skip to content

Commit

Permalink
audit: remove newline accidentally added during session id helper ref…
Browse files Browse the repository at this point in the history
…actor

A newline was accidentally added during session ID helper refactorization in
commit 4d3fb70.  This needlessly uses up buffer space, messes up syslog
formatting and makes userspace processing less efficient.  Remove it.

Signed-off-by: Richard Guy Briggs <rgb@redhat.com>
Acked-by: Eric Paris <eparis@redhat.com>
Signed-off-by: Eric Paris <eparis@redhat.com>
  • Loading branch information
rgbriggs authored and eparis committed Nov 5, 2013
1 parent 4714570 commit b8f89ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/audit.c
Original file line number Diff line number Diff line change
Expand Up @@ -1388,7 +1388,7 @@ void audit_log_session_info(struct audit_buffer *ab)
u32 sessionid = audit_get_sessionid(current);
uid_t auid = from_kuid(&init_user_ns, audit_get_loginuid(current));

audit_log_format(ab, " auid=%u ses=%u\n", auid, sessionid);
audit_log_format(ab, " auid=%u ses=%u", auid, sessionid);
}

void audit_log_key(struct audit_buffer *ab, char *key)
Expand Down

0 comments on commit b8f89ca

Please sign in to comment.