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
commit9f4e97a4d5d044e5be29b503254684197ca244ee (patch)
tree32979b34e3f45604b7011ee2f3ff7b7973c2c902 /source3
parentc7ceca8451f0ff7f4b0650084faed0614332b86e (diff)
downloadsamba-9f4e97a4d5d044e5be29b503254684197ca244ee.tar.gz
source3/registry/reg_import.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_import.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/source3/registry/reg_import.h b/source3/registry/reg_import.h
index 70db4acd1bd..0cb27cc4095 100644
--- a/source3/registry/reg_import.h
+++ b/source3/registry/reg_import.h
@@ -34,7 +34,7 @@ struct registry_value;
struct regval_blob;
/**
- * Protoype for function called to open a key.
+ * Prototype for function called to open a key.
*
* @param private_data
* @param[in] parent the parent of the key to open, may be NULL
@@ -49,7 +49,7 @@ typedef WERROR (*reg_import_callback_openkey_t) (void* private_data,
void** key);
/**
- * Protoype for function called to close a key.
+ * Prototype for function called to close a key.
*
* @param private_data
* @param key the key to close
@@ -60,7 +60,7 @@ typedef WERROR (*reg_import_callback_closekey_t) (void* private_data,
void* key);
/**
- * Protoype for function called to create (or open an existing) key.
+ * Prototype for function called to create (or open an existing) key.
*
* @param private_data
* @param[in] parent the parent of the key to create, may be NULL
@@ -77,7 +77,7 @@ typedef WERROR (*reg_import_callback_createkey_t)(void* private_data,
bool* existing);
/**
- * Protoype for function called to delete a key.
+ * Prototype for function called to delete a key.
*
* @param private_data
* @param parent the parent of the key to delete, may be NULL
@@ -90,7 +90,7 @@ typedef WERROR (*reg_import_callback_deletekey_t)(void* private_data,
const char* name);
/**
- * Protoype for function called to delete a value.
+ * Prototype for function called to delete a value.
*
* @param private_data
* @param parent the key of the value to delete
@@ -103,7 +103,7 @@ typedef WERROR (*reg_import_callback_deleteval_t)(void* private_data,
const char* name);
/**
- * Protoype for function called to set a value.
+ * Prototype for function called to set a value.
*
* @param private_data
* @param parent the key of the value to set
@@ -122,7 +122,7 @@ typedef WERROR (*reg_import_callback_setval_blob_t)(void* private_data,
uint32_t size);
/**
- * Protoype for function called to set a value given as struct registry_value.
+ * Prototype for function called to set a value given as struct registry_value.
*
* @param private_data
* @param parent the key of the value to set
@@ -138,7 +138,7 @@ typedef WERROR (*reg_import_callback_setval_registry_value_t) (
const struct registry_value* val);
/**
- * Protoype for function called to set a value given as struct struct regval_blob.
+ * Prototype for function called to set a value given as struct struct regval_blob.
*
* @param private_data
* @param parent the key of the value to set