From d43e6bd885398958b8bb0acb32962d91eb8cf773 Mon Sep 17 00:00:00 2001 From: Pekka Riikonen Date: Sat, 21 Sep 2002 17:19:12 +0000 Subject: [PATCH] ctime -> silc_get_time. --- lib/silcsftp/sftp_fs_memory.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/silcsftp/sftp_fs_memory.c b/lib/silcsftp/sftp_fs_memory.c index 0867faba..7d1cba04 100644 --- a/lib/silcsftp/sftp_fs_memory.c +++ b/lib/silcsftp/sftp_fs_memory.c @@ -33,7 +33,7 @@ typedef struct MemFSEntryStruct { SilcUInt32 entry_count; /* Number of files and sub-directories */ struct MemFSEntryStruct *parent; /* non-NULL if `directory' is TRUE, includes parent directory. */ - unsigned long created; /* Time of creation */ + SilcUInt32 created; /* Time of creation */ char *name; /* Name of the entry */ char *data; /* Data of the entry */ unsigned int directory : 1; /* Set if this is directory */ @@ -775,7 +775,7 @@ void mem_readdir(void *context, SilcSFTP sftp, filesize = sizeof(*entry); memset(long_name, 0, sizeof(long_name)); - date = ctime(&entry->created); + date = (char *)silc_get_time(entry->created); if (strrchr(date, ':')) *strrchr(date, ':') = '\0'; -- 2.24.0