From 03004bd7b647eae4d7b83cf14dab983a0a9535e9 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Wed, 10 Jun 2015 16:34:28 -0500 Subject: [PATCH] scan: Rename scan_free to scan_exit --- src/scan.c | 2 +- src/scan.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scan.c b/src/scan.c index 1a396795..a73ce065 100644 --- a/src/scan.c +++ b/src/scan.c @@ -794,7 +794,7 @@ bool scan_init(struct l_genl_family *in, scan_notify_func_t func) return true; } -bool scan_free() +bool scan_exit() { bool r; diff --git a/src/scan.h b/src/scan.h index 6e557eab..f2985812 100644 --- a/src/scan.h +++ b/src/scan.h @@ -78,4 +78,4 @@ bool scan_freq_set_add(struct scan_freq_set *freqs, uint32_t freq); bool scan_freq_set_contains(struct scan_freq_set *freqs, uint32_t freq); bool scan_init(struct l_genl_family *in, scan_notify_func_t func); -bool scan_free(); +bool scan_exit();