summaryrefslogtreecommitdiff
path: root/libcli
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2019-06-27 14:53:49 +1200
committerAndreas Schneider <asn@cryptomilk.org>2019-06-27 12:54:23 +0000
commit52c87fa16512c040066dbfd8d1811a1d28851850 (patch)
tree585a309135f720990877edd38948c2cde982e8f6 /libcli
parent850e9ffe8ae6dff5d888ee5b3ff789e831c2fe94 (diff)
downloadsamba-52c87fa16512c040066dbfd8d1811a1d28851850.tar.gz
libcli/drsuapi: Correct comment in drsuapi_decrypt_attribute_value()
This is not a copy, it is just a pointer assignment. Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'libcli')
-rw-r--r--libcli/drsuapi/repl_decrypt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libcli/drsuapi/repl_decrypt.c b/libcli/drsuapi/repl_decrypt.c
index 54e8ad0d8f6..81f695ad2c2 100644
--- a/libcli/drsuapi/repl_decrypt.c
+++ b/libcli/drsuapi/repl_decrypt.c
@@ -106,7 +106,7 @@ static WERROR drsuapi_decrypt_attribute_value(TALLOC_CTX *mem_ctx,
gnutls_hash_deinit(hash_hnd, enc_key.data);
/*
- * copy the encrypted buffer part and
+ * reference the encrypted buffer part and
* decrypt it using the created encryption key using arcfour
*/
dec_buffer = data_blob_const(enc_buffer.data, enc_buffer.length);