diff options
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/cmd/bnu/conn.c | 6 | ||||
-rw-r--r-- | usr/src/cmd/bnu/ct.c | 2 | ||||
-rw-r--r-- | usr/src/cmd/bnu/cu.c | 3 | ||||
-rw-r--r-- | usr/src/cmd/bnu/pkdefs.c | 4 | ||||
-rw-r--r-- | usr/src/cmd/bnu/uucico.c | 1 |
5 files changed, 3 insertions, 13 deletions
diff --git a/usr/src/cmd/bnu/conn.c b/usr/src/cmd/bnu/conn.c index d2b7fcd8a4..4e175ab876 100644 --- a/usr/src/cmd/bnu/conn.c +++ b/usr/src/cmd/bnu/conn.c @@ -27,10 +27,6 @@ /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ /* All Rights Reserved */ - -#pragma ident "%Z%%M% %I% %E% SMI" - - #include "uucp.h" GLOBAL char _Protocol[40] = ""; /* working protocol string */ @@ -70,7 +66,7 @@ static int notin(), ifdate(), checkdate(), checktime(), classmatch(); GLOBAL char *Myline = CNULL; /* to force which line will be used */ GLOBAL char *Mytype = CNULL; /* to force selection of specific device type */ -GLOBAL int Dologin; /* to force login chat sequence */ +EXTERN int Dologin; /* to force login chat sequence */ /* * conn - place a telephone call to system and login, etc. diff --git a/usr/src/cmd/bnu/ct.c b/usr/src/cmd/bnu/ct.c index e288464c34..280b3dadb6 100644 --- a/usr/src/cmd/bnu/ct.c +++ b/usr/src/cmd/bnu/ct.c @@ -28,7 +28,6 @@ /* * Copyright (c) 2016 by Delphix. All rights reserved. */ -#pragma ident "%Z%%M% %I% %E% SMI" /* * @@ -77,6 +76,7 @@ extern int dkminor(); #define TRUE 1 #define FALSE 0 +int Dologin = 0; static int _Status; /* exit status of child */ diff --git a/usr/src/cmd/bnu/cu.c b/usr/src/cmd/bnu/cu.c index e497278979..9cce8f2425 100644 --- a/usr/src/cmd/bnu/cu.c +++ b/usr/src/cmd/bnu/cu.c @@ -27,9 +27,6 @@ /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ /* All Rights Reserved */ -#pragma ident "%Z%%M% %I% %E% SMI" - - /* * cu [-cdevice] [-sspeed] [-lline] [-bbits] [-h] [-t] [-d] [-n] * [-o|-e] [-L] [-C] telno | systemname [local-cmd] diff --git a/usr/src/cmd/bnu/pkdefs.c b/usr/src/cmd/bnu/pkdefs.c index 2bfe8712e4..21386101e2 100644 --- a/usr/src/cmd/bnu/pkdefs.c +++ b/usr/src/cmd/bnu/pkdefs.c @@ -27,9 +27,6 @@ /* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */ /* All Rights Reserved */ - -#pragma ident "%Z%%M% %I% %E% SMI" - #include "uucp.h" #include "pk.h" @@ -39,4 +36,3 @@ int pkdebug; int pksizes[] = { 1, 32, 64, 128, 256, 512, 1024, 2048, 4096, 1 }; -struct pack *Pk; diff --git a/usr/src/cmd/bnu/uucico.c b/usr/src/cmd/bnu/uucico.c index f751d0037d..b204d49efd 100644 --- a/usr/src/cmd/bnu/uucico.c +++ b/usr/src/cmd/bnu/uucico.c @@ -61,6 +61,7 @@ jmp_buf Sjbuf; extern unsigned msgtime; char uuxqtarg[MAXBASENAME] = {'\0'}; int uuxqtflag = 0; +int Dologin = 0; extern int (*Setup)(), (*Teardown)(); /* defined in interface.c */ |