Trivial changes: whitespace and modes.

Remote whitespace at the ends of lines.
Remove blank lines from the ends of files.
Change modes on source files so that they
are not executable.

Signed-off-by: Dan Cross <cross@gajendra.net>
This commit is contained in:
Dan Cross 2020-01-10 14:44:21 +00:00
parent 77a0a5b519
commit fa325e9b42
1021 changed files with 5688 additions and 6193 deletions

View file

@ -25,4 +25,3 @@ convM2T(char *ap, Ticket *f, char *key)
STRING(key, DESKEYLEN);
USED(p);
}

View file

@ -25,4 +25,3 @@ convPR2M(Passwordreq *f, char *ap, char *key)
encrypt(key, ap, n);
return n;
}

View file

@ -24,4 +24,3 @@ convTR2M(Ticketreq *f, char *ap)
n = p - (uchar*)ap;
return n;
}

View file

@ -45,7 +45,7 @@ static char*
xreadcons(char *prompt, char *def, int secret, char *buf, int nbuf)
{
char *p;
p = readcons(prompt, def, secret);
if(p == nil)
return nil;
@ -280,7 +280,7 @@ finddosfile(int fd, char *file)
if(rootsects <= 0 || rootsects > 64)
return -1;
/*
/*
* read root. it is contiguous to make stuff like
* this easier
*/
@ -305,4 +305,3 @@ finddosfile(int fd, char *file)
*/
return rootoff + rootsects*sectsize + (n-2)*sectsize*b->clustsize;
}