Move the 'type' variable inside the block where it is actually used.

This commit is contained in:
jhb 2001-10-23 17:31:11 +00:00
parent 8ac495cc5d
commit 2a89646cbb
2 changed files with 6 additions and 6 deletions

View File

@ -144,7 +144,7 @@ systemInitialize(int argc, char **argv)
/* Are we running as init? */
if (getpid() == 1) {
int fd, type;
int fd;
RunningAsInit = 1;
setsid();
@ -159,10 +159,10 @@ systemInitialize(int argc, char **argv)
* To make _sure_ we're on a VTY and don't have /dev/console switched
* away to a serial port or something, attempt to set the cursor appearance.
*/
type = 0; /* normal */
if (OnVTY) {
int fd2;
int fd2, type;
type = 0; /* normal */
if ((fd2 = open("/dev/console", O_RDWR)) != -1) {
if (ioctl(fd2, CONS_CURSORTYPE, &type) == -1) {
OnVTY = FALSE;

View File

@ -144,7 +144,7 @@ systemInitialize(int argc, char **argv)
/* Are we running as init? */
if (getpid() == 1) {
int fd, type;
int fd;
RunningAsInit = 1;
setsid();
@ -159,10 +159,10 @@ systemInitialize(int argc, char **argv)
* To make _sure_ we're on a VTY and don't have /dev/console switched
* away to a serial port or something, attempt to set the cursor appearance.
*/
type = 0; /* normal */
if (OnVTY) {
int fd2;
int fd2, type;
type = 0; /* normal */
if ((fd2 = open("/dev/console", O_RDWR)) != -1) {
if (ioctl(fd2, CONS_CURSORTYPE, &type) == -1) {
OnVTY = FALSE;