1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-26 01:52:45 +02:00

* argparse.c, dotlock.c, fileutil.c, iobuf.c, miscutil.c,

simple-gettext.c, errors.c, http.c, memory.c, secmem.c, ttyio.c: Edit all
preprocessor instructions to remove whitespace before the '#'.  This is
not required by C89, but there are some compilers out there that don't
like it.
This commit is contained in:
David Shaw 2003-05-22 02:42:44 +00:00
parent b4fc8ec5f5
commit b357540659
12 changed files with 275 additions and 277 deletions

View File

@ -1,3 +1,11 @@
2003-05-21 David Shaw <dshaw@jabberwocky.com>
* argparse.c, dotlock.c, fileutil.c, iobuf.c, miscutil.c,
simple-gettext.c, errors.c, http.c, memory.c, secmem.c, ttyio.c:
Edit all preprocessor instructions to remove whitespace before the
'#'. This is not required by C89, but there are some compilers
out there that don't like it.
2003-05-21 Werner Koch <wk@gnupg.org> 2003-05-21 Werner Koch <wk@gnupg.org>
* fileutil.c (is_file_compressed): Fix the check for the "-" file * fileutil.c (is_file_compressed): Fix the check for the "-" file

View File

@ -417,4 +417,3 @@ remove_lockfiles()
} }
#endif #endif
} }

View File

@ -110,4 +110,3 @@ g10_errstr( int err )
#undef X #undef X
return _(p); return _(p);
} }

View File

@ -236,5 +236,3 @@ leave:
iobuf_close( a ); iobuf_close( a );
return rc; return rc;
} }

View File

@ -1841,7 +1841,6 @@ off_t
iobuf_get_filelength( IOBUF a ) iobuf_get_filelength( IOBUF a )
{ {
struct stat st; struct stat st;
const char *s;
if( a->directfp ) { if( a->directfp ) {
FILE *fp = a->directfp; FILE *fp = a->directfp;
@ -2191,5 +2190,3 @@ translate_file_handle ( int fd, int for_write )
#endif #endif
return fd; return fd;
} }

View File

@ -631,4 +631,3 @@ FNAME(strdup)( const char *a FNAMEPRT )
strcpy(p, a); strcpy(p, a);
return p; return p;
} }

View File

@ -465,4 +465,3 @@ secmem_dump_stats()
cur_alloced, max_alloced, cur_blocks, max_blocks, cur_alloced, max_alloced, cur_blocks, max_blocks,
(ulong)poollen, (ulong)poolsize ); (ulong)poollen, (ulong)poolsize );
} }

View File

@ -506,4 +506,3 @@ tty_get_answer_is_yes( const char *prompt )
m_free(p); m_free(p);
return yes; return yes;
} }