diff options
author | 2006-05-27 22:37:03 +0000 | |
---|---|---|
committer | 2006-05-27 22:37:03 +0000 | |
commit | b8bdbaece35e5667fa7fb34c6af190c6c37fc7fe (patch) | |
tree | 1f2fa084ff88ed925cc8b3b287b0e1377a95ca88 | |
parent | newline fix + s/perror/xperror since we are (diff) | |
download | wireguard-openbsd-b8bdbaece35e5667fa7fb34c6af190c6c37fc7fe.tar.xz wireguard-openbsd-b8bdbaece35e5667fa7fb34c6af190c6c37fc7fe.zip |
The last time these were relevant I had a mullet.
no binary change, ok dlg@
-rw-r--r-- | bin/mt/mt.c | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/bin/mt/mt.c b/bin/mt/mt.c index cabe1ed5ebb..ed557d785f2 100644 --- a/bin/mt/mt.c +++ b/bin/mt/mt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mt.c,v 1.26 2005/12/22 17:23:27 deraadt Exp $ */ +/* $OpenBSD: mt.c,v 1.27 2006/05/27 22:37:03 beck Exp $ */ /* $NetBSD: mt.c,v 1.14.2.1 1996/05/27 15:12:11 mrg Exp $ */ /* @@ -40,7 +40,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)mt.c 8.2 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: mt.c,v 1.26 2005/12/22 17:23:27 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: mt.c,v 1.27 2006/05/27 22:37:03 beck Exp $"; #endif #endif /* not lint */ @@ -217,28 +217,12 @@ main(int argc, char *argv[]) /* NOTREACHED */ } -#ifdef sun -#include <sundev/tmreg.h> -#include <sundev/arreg.h> -#endif - -#ifdef tahoe -#include <tahoe/vba/cyreg.h> -#endif - struct tape_desc { short t_type; /* type of magtape device */ char *t_name; /* printing name */ char *t_dsbits; /* "drive status" register */ char *t_erbits; /* "error" register */ } tapes[] = { -#ifdef sun - { MT_ISCPC, "TapeMaster", TMS_BITS, 0 }, - { MT_ISAR, "Archive", ARCH_CTRL_BITS, ARCH_BITS }, -#endif -#ifdef tahoe - { MT_ISCY, "cipher", CYS_BITS, CYCW_BITS }, -#endif #define SCSI_DS_BITS "\20\5WriteProtect\2Mounted" { 0x7, "SCSI", SCSI_DS_BITS, "76543210" }, { 0 } |