mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
Modification to compile under egcs 2.91.63.
This commit is contained in:
parent
5feb10ef13
commit
d04c530836
@ -28,7 +28,7 @@
|
||||
* does a decent job of converting Samba logs into HTML.
|
||||
* -------------------------------------------------------------------------- **
|
||||
*
|
||||
* $Revision: 1.8 $
|
||||
* $Revision: 1.9 $
|
||||
*
|
||||
* ========================================================================== **
|
||||
*/
|
||||
@ -39,8 +39,8 @@
|
||||
* Global values.
|
||||
*/
|
||||
|
||||
FILE *infile = stdin;
|
||||
FILE *outfile = stdout;
|
||||
FILE *infile;
|
||||
FILE *outfile;
|
||||
|
||||
/* -------------------------------------------------------------------------- **
|
||||
* The size of the read buffer.
|
||||
@ -298,6 +298,9 @@ int main( int argc, char *argv[] )
|
||||
if( argc > 3 )
|
||||
usage();
|
||||
|
||||
infile = stdin;
|
||||
outfile = stdout;
|
||||
|
||||
if( argc > 1 && 0 != strcmp( argv[1], "-" ) )
|
||||
infile = carefull_fopen( argv[1], "r" );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user