Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
7d1f1b45
...
7d1f1b45ebe859d8bd3c937d81c2ff6c4c1f058c
authored
2004-06-12 10:28:40 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Commented out unused static functions
1 parent
84ace43c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
comsat/cfg.c
mail/util.c
comsat/cfg.c
View file @
7d1f1b4
...
...
@@ -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
)
...
...
mail/util.c
View file @
7d1f1b4
...
...
@@ -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
...
...
Please
register
or
sign in
to post a comment