]> git.proxmox.com Git - mirror_frr.git/blobdiff - pimd/pim_time.c
*: auto-convert to SPDX License IDs
[mirror_frr.git] / pimd / pim_time.c
index c88ee7554b5c2d9a94fad1f7f578180b2e519bc2..c9555f5310cd361bd606b4e27bf7cae996633d1e 100644 (file)
@@ -1,20 +1,7 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
 /*
  * PIM for Quagga
  * Copyright (C) 2008  Everton da Silva Marques
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful, but
- * WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
- * General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; see the file COPYING; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #include <zebra.h>
@@ -171,9 +158,7 @@ void pim_time_uptime_begin(char *buf, int buf_size, int64_t now, int64_t begin)
 
 long pim_time_timer_remain_msec(struct thread *t_timer)
 {
-       /* FIXME: Actually fetch msec resolution from thread */
-
        /* no timer thread running means timer has expired: return 0 */
 
-       return t_timer ? 1000 * thread_timer_remain_second(t_timer) : 0;
+       return t_timer ? thread_timer_remain_msec(t_timer) : 0;
 }