]> The Tcpdump Group git mirrors - tcpdump/commitdiff
Replace some command name 'Tcpdump' with 'tcpdump'
authorFrancois-Xavier Le Bail <[email protected]>
Wed, 20 Dec 2023 20:02:40 +0000 (21:02 +0100)
committerFrancois-Xavier Le Bail <[email protected]>
Wed, 20 Dec 2023 20:03:50 +0000 (21:03 +0100)
[skip ci]

CHANGES
CMakeLists.txt
CONTRIBUTING.md
README.md
tcpdump.c

diff --git a/CHANGES b/CHANGES
index 4747f88febb08dd51f7a10a44de84bfbedadc198..8f6f8520701711f24f584e5be24a3c38639be079 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1796,7 +1796,7 @@ v2.0.1 Sun Jan 26 21:10:10 PDT
 - Ultrix 4.0 is supported (also thanks to Jeff Mogul).
 
 - IBM RT and Stanford Enetfilter support has been added by
-  Rayan Zachariassen <[email protected]>.  Tcpdump has been tested under
+  Rayan Zachariassen <[email protected]>.  tcpdump has been tested under
   both the vanilla Enetfilter interface, and the extended interface
   (#ifdef'd by IBMRTPC) present in the MERIT version of the Enetfilter.
 
index 03d4c27f5f5a2b9d29cf2a0afd98ec3dd33531ad..8f6014f041a2d2f0039178dd1dfa24113b4f4ab2 100644 (file)
@@ -1397,7 +1397,7 @@ add_custom_target(uninstall
     COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake)
 
 #
-# Tcpdump tests
+# tcpdump tests
 # We try to find the Perl interpreter and, if we do, we have the check
 # rule run tests/TESTrun with it, because just trying to run the TESTrun
 # script as a command won't work on Windows.
index 215e4c6831c4064accf2e127322b40aec0cfc6d2..fdad452b47b8b357d2def554f1a33e9671286349 100644 (file)
@@ -39,7 +39,7 @@ and ask!
 1) Check that there isn't a pull request already opened for the changes you
    intend to make.
 
-2) [Fork](https://help.github.com/articles/fork-a-repo/) the Tcpdump
+2) [Fork](https://help.github.com/articles/fork-a-repo/) the tcpdump
    [repository](https://github.com/the-tcpdump-group/tcpdump).
 
 3) The easiest way to test your changes on multiple operating systems and
index 7236ab5a239c7e9de9b1346b84d191ba4f3cae20..653e4da3ab789a7a5f254730c853d0812d033bab 100644 (file)
--- a/README.md
+++ b/README.md
@@ -51,7 +51,7 @@ In the past tcpdump certainly or likely worked on the following platforms:
 * UnixWare
 
 ### Dependency on libpcap
-Tcpdump uses libpcap, a system-independent interface for user-level
+tcpdump uses libpcap, a system-independent interface for user-level
 packet capture.  Before building tcpdump, you must first retrieve and
 build libpcap.
 
index 9ec0aaf19916a620f8c7195652077e006fa12dfb..7159d1c76fd8677ea395f6e4321c58768f27721e 100644 (file)
--- a/tcpdump.c
+++ b/tcpdump.c
@@ -997,7 +997,7 @@ tstamp_precision_to_string(int precision)
  * that requires that it be able to do an F_GETFL fcntl() to read
  * the O_ flags.
  *
- * Tcpdump uses ftell() to determine how much data has been written
+ * tcpdump uses ftell() to determine how much data has been written
  * to a file in order to, when used with -C, determine when it's time
  * to rotate capture files.  ftell() therefore needs to do an lseek()
  * to find out the file offset and must, thanks to the aforementioned
@@ -2397,7 +2397,7 @@ DIAG_ON_WARN_UNUSED_RESULT
         * devices, and can't just give users that permission,
         * you'd make tcpdump set-UID or set-GID).
         *
-        * Tcpdump doesn't necessarily write only to one savefile;
+        * tcpdump doesn't necessarily write only to one savefile;
         * the general only way to allow a -Z instance to write to
         * savefiles as the user under whose UID it's run, rather
         * than as the user specified with -Z, would thus be to switch