From: Wayne Davison Date: Mon, 27 Sep 2021 00:23:33 +0000 (-0700) Subject: Tweak a comment. X-Git-Tag: v3.2.4pre1~65 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3cc7f0ba4385e3f108c538e6e6965eefa4769f6c;p=thirdparty%2Frsync.git Tweak a comment. --- diff --git a/util1.c b/util1.c index 0daf9b04..ef78a82d 100644 --- a/util1.c +++ b/util1.c @@ -1354,7 +1354,7 @@ int same_time(time_t f1_sec, unsigned long f1_nsec, time_t f2_sec, unsigned long return f1_sec == f2_sec; if (modify_window < 0) return f1_sec == f2_sec && f1_nsec == f2_nsec; - /* The nano seconds doesn't figure into these checks -- time windows don't care about that. */ + /* The nanoseconds do not figure into these checks -- time windows don't care about that. */ if (f2_sec > f1_sec) return f2_sec - f1_sec <= modify_window; return f1_sec - f2_sec <= modify_window;