From: Vincent Loupmon Date: Thu, 10 Mar 2016 09:53:14 +0000 (+0100) Subject: Fixed small buffer in get_datetime() X-Git-Url: https://git.xinqibao.xyz/slstatus.git/commitdiff_plain/790e150a1c6a935a154127b36deaec36d4a5bcc6?hp=790e150a1c6a935a154127b36deaec36d4a5bcc6 Fixed small buffer in get_datetime() The buffer being hardcoded to 19 (the size expected from the default time format), strftime() would fail on any format returning a longer buffer. Changed it from 19 to 64 to accomodate longer formats. ---