From: Florian Forster Date: Mon, 5 May 2008 09:59:09 +0000 (+0200) Subject: disk plugin: Use the DATA_MAX_NAME_LEN define for a fixed-sized buffer. X-Git-Tag: collectd-4.4.0~18^2 X-Git-Url: https://git.octo.it/?p=collectd.git;a=commitdiff_plain;h=67c95c066e1e872357b42700a87aa58874873a63 disk plugin: Use the DATA_MAX_NAME_LEN define for a fixed-sized buffer. --- diff --git a/src/disk.c b/src/disk.c index e2ae14e1..6ed71b28 100644 --- a/src/disk.c +++ b/src/disk.c @@ -671,7 +671,7 @@ static int disk_read (void) #elif defined(HAVE_LIBSTATGRAB) sg_disk_io_stats *ds; int disks, counter; - char name[16]; + char name[DATA_MAX_NAME_LEN]; if ((ds = sg_get_disk_io_stats(&disks)) == NULL) return (0);