summaryrefslogtreecommitdiff
path: root/source4/lib/samba3/smbpasswd.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2005-07-09 01:53:01 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:19:24 -0500
commit3191ed9ae97f7cb6da9dd1034ec416e6e892150a (patch)
tree4ccb6452e6df30137d47897675888e1d9786b77e /source4/lib/samba3/smbpasswd.c
parent002c4f7d18b4f154c7447c336acd205506d91899 (diff)
downloadsamba-3191ed9ae97f7cb6da9dd1034ec416e6e892150a.tar.gz
r8245: Add const.
Andrew Bartlett (This used to be commit 8c079ce1631433f6bf1da8f378ea5f1a271a02ae)
Diffstat (limited to 'source4/lib/samba3/smbpasswd.c')
-rw-r--r--source4/lib/samba3/smbpasswd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/samba3/smbpasswd.c b/source4/lib/samba3/smbpasswd.c
index 587d038a3d0..bcbb5e56d89 100644
--- a/source4/lib/samba3/smbpasswd.c
+++ b/source4/lib/samba3/smbpasswd.c
@@ -58,12 +58,12 @@
/*! Convert 32 hex characters into a 16 byte array. */
-struct samr_Password *smbpasswd_gethexpwd(TALLOC_CTX *mem_ctx, char *p)
+struct samr_Password *smbpasswd_gethexpwd(TALLOC_CTX *mem_ctx, const char *p)
{
int i;
unsigned char lonybble, hinybble;
const char *hexchars = "0123456789ABCDEF";
- char *p1, *p2;
+ const char *p1, *p2;
struct samr_Password *pwd = talloc(mem_ctx, struct samr_Password);
if (!p) return NULL;