diff options
author | Samba Release Account <samba-bugs@samba.org> | 1997-08-27 19:27:25 +0000 |
---|---|---|
committer | Samba Release Account <samba-bugs@samba.org> | 1997-08-27 19:27:25 +0000 |
commit | b60ef755cf594ee9751660467709ea4f7a669a2c (patch) | |
tree | 07f50abe96b9eb51872a1d09c96f592fe61a0cdb /source/lib | |
parent | 7cd640e5b1a6bbe13834fe23a23ef03117024f0e (diff) | |
download | samba-b60ef755cf594ee9751660467709ea4f7a669a2c.tar.gz samba-b60ef755cf594ee9751660467709ea4f7a669a2c.tar.xz samba-b60ef755cf594ee9751660467709ea4f7a669a2c.zip |
doing that irritating compiler clash warning with the protos for standard_sub
and standard_sub_basic. again.
lkcl
Diffstat (limited to 'source/lib')
-rw-r--r-- | source/lib/util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/lib/util.c b/source/lib/util.c index d78ecf2728a..0f2786a5cfe 100644 --- a/source/lib/util.c +++ b/source/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)) { |