netdev-vport: Use vport set_stats instead of internal dev.
[openvswitch] / lib / dynamic-string.c
index c3338180d250aed389c432031598fde630cb8afa..180a4301c3fe218eb3b65e69713f006b70a217dc 100644 (file)
@@ -66,7 +66,7 @@ ds_put_uninit(struct ds *ds, size_t n)
 }
 
 void
-ds_put_char(struct ds *ds, char c)
+ds_put_char__(struct ds *ds, char c)
 {
     *ds_put_uninit(ds, 1) = c;
 }
@@ -179,7 +179,7 @@ void
 ds_put_strftime(struct ds *ds, const char *template, const struct tm *tm)
 {
     if (!tm) {
-        time_t now = time_now();
+        time_t now = time_wall();
         tm = localtime(&now);
     }
     for (;;) {