diff options
author | Josh Stone <jistone@redhat.com> | 2009-09-16 15:16:47 -0700 |
---|---|---|
committer | Josh Stone <jistone@redhat.com> | 2009-09-16 15:16:47 -0700 |
commit | ad7e33d7ceb3251f5141b586dad4f824c519d757 (patch) | |
tree | 6b0e70fc48bdb0a13d7265af7bb9eb414e81c16a /testsuite/systemtap.examples/network | |
parent | c0095e58288c7f98e89437bd4489433baa7e7c0d (diff) | |
download | systemtap-steved-ad7e33d7ceb3251f5141b586dad4f824c519d757.tar.gz systemtap-steved-ad7e33d7ceb3251f5141b586dad4f824c519d757.tar.xz systemtap-steved-ad7e33d7ceb3251f5141b586dad4f824c519d757.zip |
Spelling fixes in the meta of many examples
Diffstat (limited to 'testsuite/systemtap.examples/network')
-rwxr-xr-x | testsuite/systemtap.examples/network/netdev.stp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/systemtap.examples/network/netdev.stp b/testsuite/systemtap.examples/network/netdev.stp index 64c8167a..faf4d2ae 100755 --- a/testsuite/systemtap.examples/network/netdev.stp +++ b/testsuite/systemtap.examples/network/netdev.stp @@ -26,9 +26,9 @@ probe netdev.ioctl{ probe netdev.set_promiscuity { if (enable) - printf("Device %s entering in prosmicuous mode\n", dev_name) + printf("Device %s entering in promiscuous mode\n", dev_name) else - printf("Device %s leaving prosmicuous mode\n", dev_name) + printf("Device %s leaving promiscuous mode\n", dev_name) } probe netdev.change_rx_flag { @@ -41,7 +41,7 @@ probe netdev.change_mtu { } probe netdev.change_mac { - printf("Changing MAC adddres on device %s from %s to %s\n", + printf("Changing MAC address on device %s from %s to %s\n", dev_name, old_mac, new_mac) } |