diff options
author | Samuel Ortiz <sameo@linux.intel.com> | 2013-05-02 10:21:26 +0200 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2013-05-02 10:21:26 +0200 |
commit | 97801cc322bcfd0243349125f0ced29bfe52c478 (patch) | |
tree | bd370257dd14b2291610cc4d50c97fbe6e410cd7 /tools | |
parent | 9acba7096cf7851645b854648bd1dfdb9880f906 (diff) | |
download | neard-97801cc322bcfd0243349125f0ced29bfe52c478.tar.gz neard-97801cc322bcfd0243349125f0ced29bfe52c478.tar.bz2 neard-97801cc322bcfd0243349125f0ced29bfe52c478.zip |
nfctool: sniffer: Fix SNEP output string
SNEP stands for Simple NDEF Exchange Protocol, not Messaging Protocol.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/nfctool/snep-decode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/nfctool/snep-decode.c b/tools/nfctool/snep-decode.c index 7c89937..fd52a44 100644 --- a/tools/nfctool/snep-decode.c +++ b/tools/nfctool/snep-decode.c @@ -244,7 +244,7 @@ int snep_print_pdu(struct sniffer_packet *packet) guint32 frag_index; struct snep_frag *frag; - printf(HEADER_INDENT "Simple NDEF Messaging Protocol\n"); + printf(HEADER_INDENT "Simple NDEF Exchange Protocol (SNEP)\n"); frag_index = snep_get_frag_index(packet); |