]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
lib/util: Fix code spelling
authorJoseph Sutton <josephsutton@catalyst.net.nz>
Tue, 1 Aug 2023 03:47:18 +0000 (15:47 +1200)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 8 Aug 2023 04:39:37 +0000 (04:39 +0000)
Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
lib/util/debug.h

index 335a644718f55b8bdac9ad71dce66b3e1f7ae733..dc86fa8acee62948aba37fd1710d60e293b6b068 100644 (file)
@@ -57,7 +57,7 @@ bool dbgsetclass(int level, int cls);
  *   #define DBGC_CLASS DBGC_<your class name here>
  *
  * at the start of the file (after #include "includes.h") will default to
- * using index zero, so it will behaive just like it always has.
+ * using index zero, so it will behave just like it always has.
  */
 #define DBGC_ALL               0 /* index equivalent to DEBUGLEVEL */
 
@@ -202,7 +202,7 @@ void debuglevel_set_class(size_t idx, int level);
 /**
  * @brief DEBUGLF is same as DEBUG with explicit location and function arguments
  *
- * To be used when passing location and function of a caller appearig earlier in
+ * To be used when passing location and function of a caller appearing earlier in
  * the call stack instead of some helper function.
  *
  * @code