remove trailing space

This commit is contained in:
Koichiro IWAO 2017-09-22 14:43:10 +09:00
parent 9d6537ae2a
commit 42c0ff4d3d
No known key found for this signature in database
GPG Key ID: 9F72CDBC01BF10EB
2 changed files with 13 additions and 13 deletions

View File

@ -37,7 +37,7 @@
#include <utmp.h> #include <utmp.h>
#include <utmpx.h> #include <utmpx.h>
/* /*
* Prepare the utmpx struct and write it. * Prepare the utmpx struct and write it.
* this can handle login and logout at once with the 'state' parameter * this can handle login and logout at once with the 'state' parameter
*/ */
@ -55,12 +55,12 @@ add_xtmp_entry(int pid, const char *line, const char *user, const char *rhostnam
gettimeofday(&tv, NULL); gettimeofday(&tv, NULL);
ut.ut_tv.tv_sec = tv.tv_sec; ut.ut_tv.tv_sec = tv.tv_sec;
ut.ut_tv.tv_usec = tv.tv_usec; ut.ut_tv.tv_usec = tv.tv_usec;
strncpy(ut.ut_line, line , sizeof (ut.ut_line)); strncpy(ut.ut_line, line , sizeof (ut.ut_line));
strncpy(ut.ut_user, user , sizeof (ut.ut_user)); strncpy(ut.ut_user, user , sizeof (ut.ut_user));
strncpy(ut.ut_host, rhostname, sizeof (ut.ut_host)); strncpy(ut.ut_host, rhostname, sizeof (ut.ut_host));
/* utmp */ /* utmp */
setutxent(); setutxent();
pututxline(&ut); pututxline(&ut);
endutxent (); endutxent ();
@ -70,25 +70,25 @@ add_xtmp_entry(int pid, const char *line, const char *user, const char *rhostnam
return 0; return 0;
} }
int int
utmp_login(int pid, int display, const char *user, const char *rhostname) utmp_login(int pid, int display, const char *user, const char *rhostname)
{ {
char str_display[16]; char str_display[16];
log_message(LOG_LEVEL_DEBUG, log_message(LOG_LEVEL_DEBUG,
"adding login info for utmp/wtmp: %d - %d - %s - %s", "adding login info for utmp/wtmp: %d - %d - %s - %s",
pid, display, user, rhostname); pid, display, user, rhostname);
g_snprintf(str_display, 15, XRDP_LINE_FORMAT, display); g_snprintf(str_display, 15, XRDP_LINE_FORMAT, display);
return add_xtmp_entry(pid, str_display, user, rhostname, USER_PROCESS); return add_xtmp_entry(pid, str_display, user, rhostname, USER_PROCESS);
} }
int int
utmp_logout(int pid, int display, const char *user, const char *rhostname) utmp_logout(int pid, int display, const char *user, const char *rhostname)
{ {
char str_display[16]; char str_display[16];
log_message(LOG_LEVEL_DEBUG, log_message(LOG_LEVEL_DEBUG,
"adding logout info for utmp/wtmp: %d - %d - %s - %s", "adding logout info for utmp/wtmp: %d - %d - %s - %s",
pid, display, user, rhostname); pid, display, user, rhostname);
g_snprintf(str_display, 15, XRDP_LINE_FORMAT, display); g_snprintf(str_display, 15, XRDP_LINE_FORMAT, display);
return add_xtmp_entry(pid, str_display, user, rhostname, DEAD_PROCESS); return add_xtmp_entry(pid, str_display, user, rhostname, DEAD_PROCESS);

View File

@ -29,10 +29,10 @@
#define XRDP_LINE_FORMAT "xrdp:%d" #define XRDP_LINE_FORMAT "xrdp:%d"
/** /**
* *
* @brief * @brief
* *
* @param pid * @param pid
* @return 0 * @return 0
*/ */
int add_xtmp_entry(int pid, const char *line, const char *user, const char *rhostname, short state); int add_xtmp_entry(int pid, const char *line, const char *user, const char *rhostname, short state);