summaryrefslogtreecommitdiff
path: root/usr.sbin/hostapd/handle.c
diff options
context:
space:
mode:
authorReyk Floeter <reyk@cvs.openbsd.org>2006-06-01 22:09:10 +0000
committerReyk Floeter <reyk@cvs.openbsd.org>2006-06-01 22:09:10 +0000
commit4976ffff1518a20fedec8f8c516f033a1ffa623a (patch)
treedf698892ef89f0483e614bfed03ff59dc8295df9 /usr.sbin/hostapd/handle.c
parent682104df00ffc0a93adaf6c10985636d0c790d71 (diff)
don't use the newline character in hostapd_log() calls
Diffstat (limited to 'usr.sbin/hostapd/handle.c')
-rw-r--r--usr.sbin/hostapd/handle.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/hostapd/handle.c b/usr.sbin/hostapd/handle.c
index df5915374a4..bbe169a0a1f 100644
--- a/usr.sbin/hostapd/handle.c
+++ b/usr.sbin/hostapd/handle.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: handle.c,v 1.8 2005/12/18 17:54:12 reyk Exp $ */
+/* $OpenBSD: handle.c,v 1.9 2006/06/01 22:09:09 reyk Exp $ */
/*
* Copyright (c) 2005 Reyk Floeter <reyk@openbsd.org>
@@ -261,7 +261,7 @@ hostapd_handle_action(struct hostapd_apme *apme, struct hostapd_frame *frame,
return (0);
hostapd_log(HOSTAPD_LOG,
- "%s: sent IAPP frame HOSTAPD_%s (%u bytes)\n",
+ "%s: sent IAPP frame HOSTAPD_%s (%u bytes)",
iapp->i_iface, cfg->c_apme_dlt ==
DLT_IEEE802_11_RADIO ? "RADIOTAP" : "PCAP", len);
break;
@@ -304,7 +304,7 @@ hostapd_handle_action(struct hostapd_apme *apme, struct hostapd_frame *frame,
if (ret != 0) {
hostapd_log(HOSTAPD_LOG_DEBUG,
- "%s: node add/delete %s failed: %s\n",
+ "%s: node add/delete %s failed: %s",
apme->a_iface, etheraddr_string(lladdr),
strerror(ret));
}