diff options
author | 1999-08-30 21:03:26 +0000 | |
---|---|---|
committer | 1999-08-30 21:03:26 +0000 | |
commit | db16bc79eabb345edc1a7600fd7727627311fa53 (patch) | |
tree | bd10059620a389b09c86634d0cbecbe6946c7783 | |
parent | Fix obvious logic error (from netbsd) (diff) | |
download | wireguard-openbsd-db16bc79eabb345edc1a7600fd7727627311fa53.tar.xz wireguard-openbsd-db16bc79eabb345edc1a7600fd7727627311fa53.zip |
replace "" with "oldscsibus" in oldscsibus_cd. -moj
-rw-r--r-- | sys/arch/pmax/pmax/conf-glue.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/pmax/pmax/conf-glue.c b/sys/arch/pmax/pmax/conf-glue.c index 691d6535a40..c07f16a754d 100644 --- a/sys/arch/pmax/pmax/conf-glue.c +++ b/sys/arch/pmax/pmax/conf-glue.c @@ -132,7 +132,7 @@ void noattach __P((struct device *parent, struct device *self, void *aux)); /* placeholder definitions for new-style scsi bus/disk/tape drivers */ struct cfattach oldscsibus_ca = { 0, nomatch, noattach }; -struct cfdriver oldscsibus_cd = {NULL, "", DV_DULL }; +struct cfdriver oldscsibus_cd = {NULL, "oldscsibus", DV_DULL }; struct cfattach rz_ca = { 0, nomatch, noattach }; struct cfdriver rz_cd = { NULL, "rz", DV_DULL }; |