summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/addrmatch.c
diff options
context:
space:
mode:
authordjm <djm@openbsd.org>2013-05-17 00:13:13 +0000
committerdjm <djm@openbsd.org>2013-05-17 00:13:13 +0000
commit0d40fefd5c44016278e5af8155da9b06ebdf4527 (patch)
tree4a9db9d89b25874840f0a2812731f84c08b95893 /usr.bin/ssh/addrmatch.c
parentburner support (diff)
downloadwireguard-openbsd-0d40fefd5c44016278e5af8155da9b06ebdf4527.tar.xz
wireguard-openbsd-0d40fefd5c44016278e5af8155da9b06ebdf4527.zip
bye, bye xfree(); ok markus@
Diffstat (limited to 'usr.bin/ssh/addrmatch.c')
-rw-r--r--usr.bin/ssh/addrmatch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/addrmatch.c b/usr.bin/ssh/addrmatch.c
index e5b1e697c86..b2c86b46e0d 100644
--- a/usr.bin/ssh/addrmatch.c
+++ b/usr.bin/ssh/addrmatch.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: addrmatch.c,v 1.6 2012/06/21 00:16:07 dtucker Exp $ */
+/* $OpenBSD: addrmatch.c,v 1.7 2013/05/17 00:13:13 djm Exp $ */
/*
* Copyright (c) 2004-2008 Damien Miller <djm@mindrot.org>
@@ -416,7 +416,7 @@ addr_match_list(const char *addr, const char *_list)
goto foundit;
}
}
- xfree(o);
+ free(o);
return ret;
}
@@ -490,7 +490,7 @@ addr_match_cidr_list(const char *addr, const char *_list)
continue;
}
}
- xfree(o);
+ free(o);
return ret;
}