summaryrefslogtreecommitdiffstats
path: root/sys/net/radix.c
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2002-12-25 11:40:53 +0000
committerru <ru@FreeBSD.org>2002-12-25 11:40:53 +0000
commit49cf357a3abbfea241cae29c5d61e01ec0892d93 (patch)
tree8b75f4a75bebd7898c22b1a412be9b599c530b84 /sys/net/radix.c
parentb76b929c6935ad2cc7f74ca0cc9c68896a15b841 (diff)
downloadFreeBSD-src-49cf357a3abbfea241cae29c5d61e01ec0892d93.zip
FreeBSD-src-49cf357a3abbfea241cae29c5d61e01ec0892d93.tar.gz
Typo in function name.
Diffstat (limited to 'sys/net/radix.c')
-rw-r--r--sys/net/radix.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/net/radix.c b/sys/net/radix.c
index 7fd8c71..17449c2 100644
--- a/sys/net/radix.c
+++ b/sys/net/radix.c
@@ -76,7 +76,7 @@ static int rn_lexobetter(void *m_arg, void *n_arg);
static struct radix_mask *
rn_new_radix_mask(struct radix_node *tt,
struct radix_mask *next);
-static int rn_satsifies_leaf(char *trial, struct radix_node *leaf,
+static int rn_satisfies_leaf(char *trial, struct radix_node *leaf,
int skip);
/*
@@ -198,7 +198,7 @@ rn_lookup(v_arg, m_arg, head)
}
static int
-rn_satsifies_leaf(trial, leaf, skip)
+rn_satisfies_leaf(trial, leaf, skip)
char *trial;
register struct radix_node *leaf;
int skip;
@@ -289,7 +289,7 @@ on1:
if (t->rn_flags & RNF_NORMAL) {
if (rn_bit <= t->rn_bit)
return t;
- } else if (rn_satsifies_leaf(v, t, matched_off))
+ } else if (rn_satisfies_leaf(v, t, matched_off))
return t;
t = saved_t;
/* start searching up the tree */
@@ -312,7 +312,7 @@ on1:
x = rn_search_m(v, t, m->rm_mask);
while (x && x->rn_mask != m->rm_mask)
x = x->rn_dupedkey;
- if (x && rn_satsifies_leaf(v, x, off))
+ if (x && rn_satisfies_leaf(v, x, off))
return x;
}
m = m->rm_mklist;
OpenPOWER on IntegriCloud