diff options
Diffstat (limited to 'net-misc/xrdp/files/xrdp-gcc8.patch')
-rw-r--r-- | net-misc/xrdp/files/xrdp-gcc8.patch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/net-misc/xrdp/files/xrdp-gcc8.patch b/net-misc/xrdp/files/xrdp-gcc8.patch deleted file mode 100644 index d6c94ae..0000000 --- a/net-misc/xrdp/files/xrdp-gcc8.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- a/common/log.c 2020-08-31 09:56:09.995682785 +0200 -+++ b/common/log.c 2020-08-26 04:32:21.000000000 +0200 -@@ -555,9 +555,10 @@ - now_t = time(&now_t); - now = localtime(&now_t); - -- snprintf(buff, 21, "[%.4d%.2d%.2d-%.2d:%.2d:%.2d] ", now->tm_year + 1900, -+ if (snprintf(buff, 21, "[%.4d%.2d%.2d-%.2d:%.2d:%.2d] ", now->tm_year + 1900, - now->tm_mon + 1, now->tm_mday, now->tm_hour, now->tm_min, -- now->tm_sec); -+ now->tm_sec) < 0) -+ *buff = '\0'; - - internal_log_lvl2str(lvl, buff + 20); - |