]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove an "m" that did not belong.
authorNick Mathewson <nickm@torproject.org>
Fri, 22 Jun 2018 17:32:47 +0000 (13:32 -0400)
committerNick Mathewson <nickm@torproject.org>
Fri, 22 Jun 2018 17:32:47 +0000 (13:32 -0400)
src/lib/wallclock/tm_cvt.c

index bb23d1bef731e7166c64d924a336772267cdb180..cf73cc542c59f2c170a647cd7d58a6b123c96697 100644 (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) || ... */
 /** @} */