From: Alejandro Colomar Date: Tue, 2 Jul 2024 16:37:57 +0000 (+0200) Subject: lib/port.c: getportent(): Align variables X-Git-Tag: 4.17.0-rc1~134 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=882db57f24534d8eecc305f4e641c71c4395e05e;p=thirdparty%2Fshadow.git lib/port.c: getportent(): Align variables Signed-off-by: Alejandro Colomar --- diff --git a/lib/port.c b/lib/port.c index 60ec920bd..23b9a1b62 100644 --- a/lib/port.c +++ b/lib/port.c @@ -94,17 +94,21 @@ static void endportent (void) * set to EINVAL on error to distinguish the two conditions. */ -static struct port *getportent (void) +static struct port * +getportent(void) { - static struct port port; /* static struct to point to */ - static char buf[BUFSIZ]; /* some space for stuff */ - static char *ttys[PORT_TTY + 1]; /* some pointers to tty names */ - static char *users[PORT_IDS + 1]; /* some pointers to user ids */ - static struct pt_time ptimes[PORT_TIMES + 1]; /* time ranges */ - char *cp; /* pointer into line */ - int dtime; /* scratch time of day */ - int i, j; - int saveerr = errno; /* errno value on entry */ + int dtime; + int i, j; + int saveerr; + char *cp; + + static char buf[BUFSIZ]; + static char *ttys[PORT_TTY + 1]; + static char *users[PORT_IDS + 1]; + static struct port port; + static struct pt_time ptimes[PORT_TIMES + 1]; + + saveerr = errno; /* * If the ports file is not open, open the file. Do not rewind