tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 76a717890e6c491d0ecd696687a9ba842f143729
parent 4118ba67dbdaecdd93d6ba02584b19dc62e28916
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri, 22 Jun 2018 13:32:47 -0400

Remove an "m" that did not belong.

Diffstat:
Msrc/lib/wallclock/tm_cvt.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/wallclock/tm_cvt.c b/src/lib/wallclock/tm_cvt.c @@ -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) || ... */ /** @} */