Remove an "m" that did not belong.

This commit is contained in:
Nick Mathewson 2018-06-22 13:32:47 -04:00
parent 4118ba67db
commit 76a717890e

View File

@ -145,7 +145,7 @@ tor_localtime_r_msg(const time_t *timep, struct tm *result, char **err_out)
r = localtime(timep);
if (r)
memcpy(result, r, sizeof(struct tm));
return correct_tm(1, timep, result, rm, err_out);
return correct_tm(1, timep, result, r, err_out);
}
#endif /* defined(HAVE_LOCALTIME_R) || ... */
/** @} */