1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-14 20:23:54 +03:00

doing that irritating compiler clash warning with the protos for standard_sub

and standard_sub_basic.  again.

lkcl
This commit is contained in:
Samba Release Account
-
parent 7cd640e5b1
commit b60ef755cf
3 changed files with 13 additions and 12 deletions

View File

@@ -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))
{