summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorSamba Release Account <samba-bugs@samba.org>1997-08-27 19:27:25 +0000
committerSamba Release Account <samba-bugs@samba.org>1997-08-27 19:27:25 +0000
commit38dc53828e6e9a3ba9589c722fba40a4df167d75 (patch)
tree2e3cf884e1dbdea94092cb76708314db1700466d /source3/lib
parent5c2d12119c7d2e8c8563f22ffa23ab7d213242fb (diff)
downloadsamba-38dc53828e6e9a3ba9589c722fba40a4df167d75.tar.gz
samba-38dc53828e6e9a3ba9589c722fba40a4df167d75.tar.bz2
samba-38dc53828e6e9a3ba9589c722fba40a4df167d75.zip
doing that irritating compiler clash warning with the protos for standard_sub
and standard_sub_basic. again. lkcl (This used to be commit b60ef755cf594ee9751660467709ea4f7a669a2c)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index d78ecf2728..0f2786a5cf 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -3301,13 +3301,13 @@ sub strings with useful parameters
Rewritten by Stefaan A Eeckels <Stefaan.Eeckels@ecc.lu> and
Paul Rippin <pr3245@nopc.eurostat.cec.be>
********************************************************************/
-void standard_sub_basic(char *string)
+void standard_sub_basic(char *str)
{
char *s, *p;
char pidstr[10];
struct passwd *pass;
- for (s = string ; (p = strchr(s,'%')) != NULL ; s = p )
+ for (s = str ; (p = strchr(s,'%')) != NULL ; s = p )
{
switch (*(p+1))
{