mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-08-14 22:38:37 +02:00
* codeql fixes * fix type mismatches * fix pointers in w32_time methods * fixes for codeQL warnings * modify checks for codeql warnings * add comments for codeql suppressions * additional codeql fixes and suppressions * add codeql fixes * add comments for codeql * add comments for codeql * switch from debug to error log messages * fix another merge conflict fix line endings in gss-sspi.c * add null check in channels.c * address PR feedback * address additional review feedback * add CodeQL comments to common code * fix unittest-win32compat * fix unit test * address review feedback * remove suppression
10 lines
246 B
C
10 lines
246 B
C
#include "crtheaders.h"
|
|
#include TIME_H
|
|
|
|
#define localtime w32_localtime
|
|
#define ctime w32_ctime
|
|
|
|
struct tm *localtime_r(const time_t *, struct tm *);
|
|
struct tm *w32_localtime(const time_t* sourceTime);
|
|
char *w32_ctime(const time_t* sourceTime);
|