am b6c48b20: Merge "Allow for better utmp logging."

* commit 'b6c48b20e4aa9a0e0068980eb305dc522a680900':
  Allow for better utmp logging.
This commit is contained in:
Calin Juravle 2014-05-07 14:09:52 +00:00 committed by Android Git Automerger
commit c27870158a

View File

@ -36,9 +36,15 @@
#define _PATH_WTMP "/var/log/wtmp"
#define _PATH_LASTLOG "/var/log/lastlog"
#define UT_NAMESIZE 8
#define UT_LINESIZE 8
#define UT_HOSTSIZE 16
#ifdef __LP64__
#define UT_NAMESIZE 32
#define UT_LINESIZE 32
#define UT_HOSTSIZE 256
#else
#define UT_NAMESIZE 8
#define UT_LINESIZE 8
#define UT_HOSTSIZE 16
#endif
#define USER_PROCESS 7