From: Mike Lowis Date: Wed, 27 Apr 2016 20:18:18 +0000 (-0400) Subject: Remove username and hostname remnants from getty X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=47fd3274a508394fc1e964460d7c101d14d6b75a;p=proto%2Falbase.git Remove username and hostname remnants from getty --- diff --git a/source/getty.c b/source/getty.c index 7af8da1d..75c22b77 100644 --- a/source/getty.c +++ b/source/getty.c @@ -15,6 +15,8 @@ char* ARGV0; static char* TTY = "/dev/tty1"; static char* TERM = "linux"; static char* UTMP = "/var/run/utmp"; +static char Hostname[256] = {0}; +static char Username[256] = {0}; static void ignoresig(int signal, int ignore) { struct sigaction sigact;