diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-11-23 20:47:30 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-11-23 20:47:30 +0000 |
commit | f68ca1b22c9b07c6e43b9518ce5ef4f1c808d2fd (patch) | |
tree | a5867149031457d322f8ba9f0fdc69bc2bc0a092 /usr.sbin/hostapd | |
parent | b089df2bdf03fb1961826192211dd1326197a66c (diff) |
log message consistency
Diffstat (limited to 'usr.sbin/hostapd')
-rw-r--r-- | usr.sbin/hostapd/iapp.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/hostapd/iapp.c b/usr.sbin/hostapd/iapp.c index 5ce76a7d993..6a6f9272c65 100644 --- a/usr.sbin/hostapd/iapp.c +++ b/usr.sbin/hostapd/iapp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: iapp.c,v 1.9 2005/11/20 12:02:04 reyk Exp $ */ +/* $OpenBSD: iapp.c,v 1.10 2005/11/23 20:47:29 reyk Exp $ */ /* * Copyright (c) 2004, 2005 Reyk Floeter <reyk@vantronix.net> @@ -53,9 +53,9 @@ hostapd_iapp_init(struct hostapd_config *cfg) TAILQ_FOREACH(apme, &cfg->c_apmes, a_entries) { /* Get Host AP's BSSID */ hostapd_priv_apme_bssid(apme); - hostapd_log(HOSTAPD_LOG_VERBOSE, - "%s/%s: attached Host AP interface with BSSID \"%s\"\n", - cfg->c_iapp_iface, apme->a_iface, + hostapd_log(HOSTAPD_LOG, + "%s/%s: attached Host AP interface with BSSID %s\n", + apme->a_iface, cfg->c_iapp_iface, etheraddr_string(apme->a_bssid)); } } @@ -71,7 +71,7 @@ hostapd_iapp_term(struct hostapd_config *cfg) TAILQ_FOREACH(apme, &cfg->c_apmes, a_entries) { hostapd_log(HOSTAPD_LOG_VERBOSE, "%s/%s: detaching from Host AP\n", - cfg->c_iapp_iface, apme->a_iface); + apme->a_iface, cfg->c_iapp_iface); } } |