]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
time-util: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Mon, 14 Dec 2020 13:57:06 +0000 (22:57 +0900)
committerLennart Poettering <lennart@poettering.net>
Mon, 14 Dec 2020 16:56:01 +0000 (17:56 +0100)
src/basic/time-util.c

index 5318d6378de8ac43023a83feb846c92f15709474..52c564a68d3353242c2f5d90489d875de83e92eb 100644 (file)
@@ -1606,7 +1606,7 @@ TimestampStyle timestamp_style_from_string(const char *s) {
                 return t;
         if (streq_ptr(s, "µs"))
                 return TIMESTAMP_US;
-        if (streq_ptr(s, "µs+uts"))
+        if (streq_ptr(s, "µs+utc"))
                 return TIMESTAMP_US_UTC;
         return t;
 }