summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorBjörn Jacke <bj@sernet.de>2019-10-26 02:41:09 +0200
committerBjoern Jacke <bjacke@samba.org>2019-10-31 00:43:37 +0000
commitb61e3233273411d693da0e516e4da09423ca92db (patch)
tree07ea2d2d94edd4a4e1e1856f93894ef7135646e2 /source3
parent9f4e97a4d5d044e5be29b503254684197ca244ee (diff)
downloadsamba-b61e3233273411d693da0e516e4da09423ca92db.tar.gz
source3/registry/reg_parse.h: typo fixes
Signed-off-by: Bjoern Jacke <bjacke@samba.org> Reviewed-by: Martin Schwenke <martin@meltin.net>
Diffstat (limited to 'source3')
-rw-r--r--source3/registry/reg_parse.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/registry/reg_parse.h b/source3/registry/reg_parse.h
index 3940e3d6936..867c76eab2f 100644
--- a/source3/registry/reg_parse.h
+++ b/source3/registry/reg_parse.h
@@ -34,7 +34,7 @@
#include <stdbool.h>
/**
- * Protoype for function called on key found.
+ * Prototype for function called on key found.
* The usual action to take is delete the key if del==true, open it if
* already existing or create a new one.
*
@@ -53,7 +53,7 @@ typedef int (*reg_parse_callback_key_t) (void* private_data,
bool del);
/**
- * Protoype for function called on value found.
+ * Prototype for function called on value found.
* The usual action to take is set the value of the last opened key.
*
* @param private_data
@@ -73,7 +73,7 @@ typedef int (*reg_parse_callback_val_t) (void* private_data,
size_t len);
/**
- * Protoype for function called on value delete found.
+ * Prototype for function called on value delete found.
* Delete value from the last opened key. It is usually no error if
* no such value exist.
*
@@ -89,7 +89,7 @@ typedef int (*reg_parse_callback_val_del_t) (void* private_data,
/**
- * Protoype for function called on comment found.
+ * Prototype for function called on comment found.
*
* @param private_data
* @param line comment with marker removed.