1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

backing out changes for now

(This used to be commit e3422addeb)
This commit is contained in:
Gerald Carter 2002-06-24 20:26:37 +00:00
parent 2e148c865a
commit 86e2e9b8a3

View File

@ -111,7 +111,7 @@ static void ScanQconfig_fn(char *psz,void (*fn)(char *, char *))
iEtat = 0;
/* scan qconfig file for searching <printername>: */
for (;(line = fgets_slash(NULL,sizeof(pstring),pfile)); SAFE_FREE(line))
for (;(line = fgets_slash(NULL,sizeof(pstring),pfile)); free(line))
{
if (*line == '*' || *line == 0)
continue;
@ -181,7 +181,7 @@ static BOOL ScanQconfig(char *psz,char *pszPrintername)
if ((pfile = x_fopen(psz, O_RDONLY, 0)) == NULL)
{
DEBUG(0,( "Unable to open qconfig file %s for read!\n", psz));
SAFE_FREE(pName);
free(pName);
return(False);
}
slprintf(pName, iLg + 9, "%s:",pszPrintername);
@ -189,7 +189,7 @@ static BOOL ScanQconfig(char *psz,char *pszPrintername)
/*DEBUG(3,( " Looking for entry %s\n",pName));*/
iEtat = 0;
/* scan qconfig file for searching <printername>: */
for (;(line = fgets_slash(NULL,sizeof(pstring),pfile)); SAFE_FREE(line))
for (;(line = fgets_slash(NULL,sizeof(pstring),pfile)); free(line))
{
if (*line == '*' || *line == 0)
continue;
@ -208,8 +208,8 @@ static BOOL ScanQconfig(char *psz,char *pszPrintername)
{
/* name is found without stanza device */
/* probably a good printer ??? */
SAFE_FREE (line);
SAFE_FREE(pName);
free (line);
free(pName);
fclose(pfile);
return(True);
}
@ -222,15 +222,15 @@ static BOOL ScanQconfig(char *psz,char *pszPrintername)
else if (strlocate(line,"device"))
{
/* it's a good virtual printer */
SAFE_FREE (line);
SAFE_FREE(pName);
free (line);
free(pName);
fclose(pfile);
return(True);
}
break;
}
}
SAFE_FREE (pName);
free (pName);
x_fclose(pfile);
return(False);
}
@ -288,7 +288,7 @@ BOOL pcap_printername_ok(char *pszPrintername, char *pszPrintcapname)
return(False);
}
for (;(line = fgets_slash(NULL,sizeof(pstring),pfile)); SAFE_FREE(line))
for (;(line = fgets_slash(NULL,sizeof(pstring),pfile)); free(line))
{
if (*line == '#' || *line == 0)
continue;
@ -307,7 +307,7 @@ BOOL pcap_printername_ok(char *pszPrintername, char *pszPrintcapname)
{
/* normalise the case */
pstrcpy(pszPrintername,p);
SAFE_FREE(line);
free(line);
x_fclose(pfile);
return(True);
}
@ -369,7 +369,7 @@ void pcap_printer_fn(void (*fn)(char *, char *))
return;
}
for (;(line = fgets_slash(NULL,sizeof(pstring),pfile)); SAFE_FREE(line))
for (;(line = fgets_slash(NULL,sizeof(pstring),pfile)); free(line))
{
if (*line == '#' || *line == 0)
continue;