# HG changeset patch # User Pascal Bellard # Date 1466338721 -7200 # Node ID 3b9bfe76d680b99f0c372a46bc94dd4a0912a25d # Parent 8563f3c360690e714addba10879be95e71aa773a syslinux/c32box: fix custom_cmdline diff -r 8563f3c36069 -r 3b9bfe76d680 syslinux/stuff/extra/md5sum.c --- a/syslinux/stuff/extra/md5sum.c Sat Jun 18 20:11:48 2016 +0300 +++ b/syslinux/stuff/extra/md5sum.c Sun Jun 19 14:18:41 2016 +0200 @@ -839,7 +839,7 @@ if (has_custom_config()) { *p++ = ' '; - strcat(p, custom_cmdline); + strcpy(p, custom_cmdline); } return cmdline;