summaryrefslogtreecommitdiffstats
path: root/source/lib/util.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-11-12 06:12:19 +0000
committerAndrew Tridgell <tridge@samba.org>1998-11-12 06:12:19 +0000
commit713864dd0322ae2ae2d83e333d85be35a7eed4ec (patch)
tree9d40396028cf5b42e19c75592b484f3f7e5824a6 /source/lib/util.c
parent45131501f23ce1eec2f23fe2c1060cd5a2736ec9 (diff)
downloadsamba-713864dd0322ae2ae2d83e333d85be35a7eed4ec.tar.gz
samba-713864dd0322ae2ae2d83e333d85be35a7eed4ec.tar.xz
samba-713864dd0322ae2ae2d83e333d85be35a7eed4ec.zip
largely rewrote smbpasswd so that the code is understandable. This
should allow us to call a function in swat rather than piping to smbpasswd. while doing this I also fixed quite a few "const char *" versus "char *" issues that cropped up while using const to track down bugs in the code. This led to changes in several generic functions. The smbpasswd changes should be correct but they have not been extensively tested. At least if I have introduced bugs then we should be able to fix them more easily than before.
Diffstat (limited to 'source/lib/util.c')
-rw-r--r--source/lib/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/lib/util.c b/source/lib/util.c
index f1fae9155c8..2be1fcaf6fc 100644
--- a/source/lib/util.c
+++ b/source/lib/util.c
@@ -2386,7 +2386,7 @@ BOOL same_net(struct in_addr ip1,struct in_addr ip2,struct in_addr mask)
a wrapper for gethostbyname() that tries with all lower and all upper case
if the initial name fails
****************************************************************************/
-struct hostent *Get_Hostbyname(char *name)
+struct hostent *Get_Hostbyname(const char *name)
{
char *name2 = strdup(name);
struct hostent *ret;