Use pstrcpy to avoid OpenBSD linker warnings

Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
Blue Swirl 2009-08-15 11:33:58 +00:00
parent fc0d96b4e3
commit 1786dc15ee
1 changed files with 1 additions and 1 deletions

View File

@ -834,7 +834,7 @@ static int vdi_create(const char *filename, QEMUOptionParameter *options)
bmap_size = ((bmap_size + SECTOR_SIZE - 1) & ~(SECTOR_SIZE -1));
memset(&header, 0, sizeof(header));
strcpy(header.text, VDI_TEXT);
pstrcpy(header.text, sizeof(header.text), VDI_TEXT);
header.signature = VDI_SIGNATURE;
header.version = VDI_VERSION_1_1;
header.header_size = 0x180;