Commit 7d1f1b45 7d1f1b45ebe859d8bd3c937d81c2ff6c4c1f058c by Sergey Poznyakoff

Commented out unused static functions

1 parent 84ace43c
......@@ -239,6 +239,8 @@ read_config (const char *config_file)
fclose (fp);
}
/*NOTE: currently unused. */
#if 0
static void
netdef_free (netdef_t *netdef)
{
......@@ -266,7 +268,6 @@ acl_free (acl_t *acl)
}
}
/*NOTE: currently unused. */
static void
discard_acl (acl_t *mark)
{
......@@ -279,6 +280,7 @@ discard_acl (acl_t *mark)
else
acl_head = acl_tail = NULL;
}
#endif
int
acl_match (struct sockaddr_in *sa_in)
......
......@@ -60,7 +60,9 @@ util_ll_add (node *c, int data)
/*
* free a linked list
* Unused so far
*/
#if 0
static void
util_ll_free (node *c)
{
......@@ -72,6 +74,7 @@ util_ll_free (node *c)
free (c);
}
}
#endif
/*
* expands command into its command and arguments, then runs command
......