From: Matthew Fernandez Date: Sun, 14 Feb 2021 18:31:14 +0000 (-0800) Subject: remove unused smyrna file X-Git-Tag: 2.47.0~47^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=33fd3c7530a37e639d5ff69b87934da961698db4;p=graphviz remove unused smyrna file --- diff --git a/cmd/smyrna/topviewdata.c b/cmd/smyrna/topviewdata.c deleted file mode 100644 index 31b27cc03..000000000 --- a/cmd/smyrna/topviewdata.c +++ /dev/null @@ -1,30 +0,0 @@ -/* vim:set shiftwidth=4 ts=8: */ - -/************************************************************************* - * Copyright (c) 2011 AT&T Intellectual Property - * All rights reserved. This program and the accompanying materials - * are made available under the terms of the Eclipse Public License v1.0 - * which accompanies this distribution, and is available at - * http://www.eclipse.org/legal/epl-v10.html - * - * Contributors: Details at https://graphviz.org - *************************************************************************/ - -#include "topviewdata.h" -#include "btree.h" -#include -#include - -#include - -static int validate_group_node(tv_node * TV_Node, char *regex_string) -{ - btree_node *n = 0; -// n=tree_from_filter_string("([IP=\"^10.*\",min=\"0\",max=\"0\"])"); - int valid = 0; - n = tree_from_filter_string(regex_string); - valid = evaluate_expresions(TV_Node, n); -// delete_node(n); - return valid; -} -