aboutsummaryrefslogtreecommitdiff
path: root/pcap-bt-linux.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2018-12-10 15:24:11 -0800
committerGuy Harris <guy@alum.mit.edu>2018-12-10 15:24:11 -0800
commit5c3ffb99ec36fe501fac34abc0de29021225423e (patch)
treee3ea37bd9e50722d62ac4c1e39ab83ad326d2407 /pcap-bt-linux.c
parent62f51e4a1534c74c6c939e3888c1af4310a6fc81 (diff)
Clean up some "injection not supported" messages.
Diffstat (limited to 'pcap-bt-linux.c')
-rw-r--r--pcap-bt-linux.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pcap-bt-linux.c b/pcap-bt-linux.c
index c3041a91..82a5554f 100644
--- a/pcap-bt-linux.c
+++ b/pcap-bt-linux.c
@@ -380,8 +380,8 @@ bt_read_linux(pcap_t *handle, int max_packets _U_, pcap_handler callback, u_char
static int
bt_inject_linux(pcap_t *handle, const void *buf _U_, int size _U_)
{
- pcap_snprintf(handle->errbuf, PCAP_ERRBUF_SIZE, "Inject not supported on "
- "Bluetooth devices");
+ pcap_snprintf(handle->errbuf, PCAP_ERRBUF_SIZE,
+ "Packet injection is not supported on Bluetooth devices");
return (-1);
}