diff options
author | Roel Kluin <12o3l@tiscali.nl> | 2008-04-28 05:15:10 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-28 11:58:37 -0400 |
commit | af2afd247f0fae25d66f210fb800fe6a2958366e (patch) | |
tree | 0245418583bca2eba725090331f6c8fec29766e1 /drivers/video/aty | |
parent | 9e3f0ca812ab8fa3f4e65ade41bf6fb936f14e15 (diff) |
drivers/video/aty/aty128fb.c: fix incorrect usage of strncat in aty128_init()
Fix incorrect length for strncat by replacing it with strlcat
Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
Cc: "Antonino A. Daplas" <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/aty')
-rw-r--r-- | drivers/video/aty/aty128fb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/aty/aty128fb.c b/drivers/video/aty/aty128fb.c index cbd3308b6690..27faffdee11b 100644 --- a/drivers/video/aty/aty128fb.c +++ b/drivers/video/aty/aty128fb.c | |||
@@ -1885,7 +1885,7 @@ static int __devinit aty128_init(struct pci_dev *pdev, const struct pci_device_i | |||
1885 | 1885 | ||
1886 | /* range check to make sure */ | 1886 | /* range check to make sure */ |
1887 | if (ent->driver_data < ARRAY_SIZE(r128_family)) | 1887 | if (ent->driver_data < ARRAY_SIZE(r128_family)) |
1888 | strncat(video_card, r128_family[ent->driver_data], sizeof(video_card)); | 1888 | strlcat(video_card, r128_family[ent->driver_data], sizeof(video_card)); |
1889 | 1889 | ||
1890 | printk(KERN_INFO "aty128fb: %s [chip rev 0x%x] ", video_card, chip_rev); | 1890 | printk(KERN_INFO "aty128fb: %s [chip rev 0x%x] ", video_card, chip_rev); |
1891 | 1891 | ||