Author: glebius
Date: Tue Nov 30 16:00:59 2010
New Revision: 216076
URL: http://svn.freebsd.org/changeset/base/216076

Log:
  That should belong to r216075. Pointy hat on me.

Modified:
  head/usr.sbin/arp/arp.c

Modified: head/usr.sbin/arp/arp.c
==============================================================================
--- head/usr.sbin/arp/arp.c     Tue Nov 30 15:57:00 2010        (r216075)
+++ head/usr.sbin/arp/arp.c     Tue Nov 30 16:00:59 2010        (r216076)
@@ -319,9 +319,9 @@ set(int argc, char **argv)
        doing_proxy = flags = proxy_only = expire_time = 0;
        while (argc-- > 0) {
                if (strncmp(argv[0], "temp", 4) == 0) {
-                       struct timeval tv;
-                       gettimeofday(&tv, 0);
-                       expire_time = tv.tv_sec + 20 * 60;
+                       struct timespec tp;
+                       clock_gettime(CLOCK_MONOTONIC, &tp);
+                       expire_time = tp.tv_sec + 20 * 60;
                } else if (strncmp(argv[0], "pub", 3) == 0) {
                        flags |= RTF_ANNOUNCE;
                        doing_proxy = 1;
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to