]> git.proxmox.com Git - mirror_frr.git/blobdiff - lib/event_counter.h
zebra, lib: fix the ZEBRA_INTERFACE_VRF_UPDATE zapi message
[mirror_frr.git] / lib / event_counter.h
index f40c6cde63265458298fdb48f88f5bca62f68d75..de5dbc06655bc089a5237364c03d1ece9eed957d 100644 (file)
  * 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 Quagga; see the file COPYING.  If not, write to the Free
- * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
- * 02111-1307, USA.
+ * 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
  */
 
 #ifndef _ZEBRA_EVENT_COUNTER_H
 #define _ZEBRA_EVENT_COUNTER_H
 
-struct event_counter
-{
-  unsigned long long count;
-  time_t last;
+struct event_counter {
+       unsigned long long count;
+       time_t last;
 };
 
-void event_counter_inc (struct event_counter *counter);
-const char *event_counter_format (const struct event_counter *counter);
+void event_counter_inc(struct event_counter *counter);
+const char *event_counter_format(const struct event_counter *counter);
 
 #endif