1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

Nuked almost all trailing white space.

We better do this once and for all instead of cluttering all future
commits with diffs of trailing white spaces.  In the majority of cases
blank or single lines are affected and thus this change won't disturb
a git blame too much.  For future commits the pre-commit scripts
checks that this won't happen again.
This commit is contained in:
Werner Koch 2011-02-04 12:57:53 +01:00
parent ffd099eb19
commit b008274afd
305 changed files with 5385 additions and 5592 deletions

View file

@ -30,7 +30,7 @@
considered a byte stream ending in a LF.
If MAX_LENGTH is not NULL, it shall point to a value with the
maximum allowed allocation.
maximum allowed allocation.
Returns the length of the line. EOF is indicated by a line of
length zero. A truncated line is indicated by setting the value at
@ -45,7 +45,7 @@
append a CR,LF,Nul
*/
ssize_t
read_line (FILE *fp,
read_line (FILE *fp,
char **addr_of_buffer, size_t *length_of_buffer,
size_t *max_length)
{
@ -94,7 +94,7 @@ read_line (FILE *fp,
if (!*addr_of_buffer)
{
int save_errno = errno;
xfree (buffer);
xfree (buffer);
*length_of_buffer = 0;
if (max_length)
*max_length = 0;
@ -103,7 +103,7 @@ read_line (FILE *fp,
}
buffer = *addr_of_buffer;
*length_of_buffer = length;
length -= 3;
length -= 3;
p = buffer + nbytes;
}
*p++ = c;