~ubuntu-branches/ubuntu/jaunty/lpr/jaunty

« back to all changes in this revision

Viewing changes to common_source/lp.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-03-15 14:54:38 UTC
  • Revision ID: james.westby@ubuntu.com-20030315145438-wvhdf01k99wvq846
Tags: 1:2000.05.07-4.3
* Non-maintainer upload by the Security Team
* Applied patch from SuSE to fix buffer overvlow and arbitrary file access

Show diffs side-by-side

added added

removed removed

Lines of Context:
109
109
void     displayq __P((int));
110
110
void     dump __P((char *, char *, int));
111
111
void     fatal __P((const char *, ...));
112
 
int      getline __P((FILE *));
 
112
int      getcfline __P((FILE *));
113
113
int      getport __P((char *, int));
114
114
int      getq __P((struct queue *(*[])));
115
115
void     header __P((void));
116
116
void     inform __P((char *));
117
117
int      inlist __P((char *, char *));
118
 
int      iscf __P((struct dirent *));
 
118
int      iscf __P((const struct dirent *));
119
119
int      isowner __P((char *, char *));
120
120
void     ldump __P((char *, char *, int));
121
121
int      lockchk __P((char *));
127
127
int      startdaemon __P((char *));
128
128
void     warn __P((void));
129
129
void     delay __P((int));
 
130
 
 
131
char    *cgetcap __P((char *, const char *, int));
 
132
int      cgetent __P((char **, char **, const char *));
 
133
int      cgetmatch __P((char *, const char *));
 
134
int      cgetnext __P((char **, char **));
 
135
int      cgetstr __P((char *, const char *, char **));
 
136
int      cgetunum __P((char *, const char *, long *));
130
137
__END_DECLS