diff options
Diffstat (limited to 'testsuite/systemtap.examples/network/netdev.stp')
-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) } |