aboutsummaryrefslogtreecommitdiff
path: root/src/rc/rc-wtmp.c
diff options
context:
space:
mode:
authorAustin English <austinenglish@gmail.com>2018-10-12 17:16:23 -0500
committerMike Frysinger <vapier@gmail.com>2018-10-13 12:53:54 -0400
commit02af093043a7444381b0d8a0a3e8e97247505f95 (patch)
tree9c115ea04a3a40c71cc8bf3b8c3f0bafb41533fd /src/rc/rc-wtmp.c
parent67e2d6033dd7ac6db0269ee060ed20484825ff9f (diff)
misc: whitespace fixes
Diffstat (limited to 'src/rc/rc-wtmp.c')
-rw-r--r--src/rc/rc-wtmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rc/rc-wtmp.c b/src/rc/rc-wtmp.c
index 8d494303..40cc280c 100644
--- a/src/rc/rc-wtmp.c
+++ b/src/rc/rc-wtmp.c
@@ -42,7 +42,7 @@ void log_wtmp(const char *user, const char *id, pid_t pid, int type,
strncpy(utmp.ut_name, user, sizeof(utmp.ut_name));
strncpy(utmp.ut_id , id , sizeof(utmp.ut_id ));
strncpy(utmp.ut_line, line, sizeof(utmp.ut_line));
-
+
/* Put the OS version in place of the hostname */
if (uname(&uname_buf) == 0)
strncpy(utmp.ut_host, uname_buf.release, sizeof(utmp.ut_host));