summaryrefslogtreecommitdiff
path: root/backend/hp-scl.c
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2020-03-30 21:30:45 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2020-03-30 21:30:45 +0200
commitee770c2346eb37e0dcb8b6cf3eaacf3d8efd6bbc (patch)
tree58f05092be1a17a939e861f8cadcda1b6ca2ecef /backend/hp-scl.c
parent0da9e21872802cfc6e975b1ebaf9efb9e5934d84 (diff)
parentfef76e17ed4c607ea73b81279f9ef1d7121be900 (diff)
Merge branch 'release/experimental/1.0.29-1_experimental1'experimental/1.0.29-1_experimental1
Diffstat (limited to 'backend/hp-scl.c')
-rw-r--r--backend/hp-scl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/backend/hp-scl.c b/backend/hp-scl.c
index f1813c7..fae7f97 100644
--- a/backend/hp-scl.c
+++ b/backend/hp-scl.c
@@ -523,8 +523,8 @@ sanei_hp_nonscsi_new (HpScsi * newp, const char * devname, HpConnect connect)
}
/* For SCSI-devices we would have the inquire command here */
- strncpy ((char *)new->inq_data, "\003zzzzzzzHP ------ R000",
- sizeof (new->inq_data));
+ memcpy (new->inq_data, "\003zzzzzzzHP ------ R000",
+ sizeof (new->inq_data));
new->bufp = new->buf + HP_SCSI_CMD_LEN;
new->devname = sanei_hp_alloc ( strlen ( devname ) + 1 );
@@ -553,7 +553,7 @@ hp_scsi_close (HpScsi this, int completely)
DBG(3, "scsi_close: not closing. Keep open\n");
return;
}
-
+
}
assert(this->fd >= 0);