fix previous commit

This commit is contained in:
Simon Morlat 2013-02-01 09:34:26 +01:00
parent ad800f9976
commit f65e26aa18

View file

@ -84,7 +84,7 @@ void sal_remove_in_subscribe(Sal *sal, SalOp *op){
#ifdef WIN32
static inline char *my_ctime_r(const time_t *t, char *buf){
strcpy(buf,ctime_r(t));
strcpy(buf,ctime(t));
return buf;
}