Skip to content

Commit

Permalink
Update my email address; intify some main()s
Browse files Browse the repository at this point in the history
  • Loading branch information
david parsons committed Jun 23, 2015
1 parent 84f0624 commit e18c0ae
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 9 deletions.
2 changes: 1 addition & 1 deletion COPYRIGHT
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* software must display the following acknowledgement:
*
* This product includes software developed by David Parsons
* (orc@pell.chi.il.us)
* (orc@pell.portland.or.us)
*
* 4. My name may not be used to endorse or promote products derived
* from this software without specific prior written permission.
Expand Down
4 changes: 4 additions & 0 deletions base64.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,12 @@ b64gets(context *ctx, char *line, int size)
main(argc, argv)
char **argv;
{
static char inbuf[10240];

context context = { stdin, stdout };

setbuffer(stdin, inbuf, sizeof inbuf);


if ( (argc > 1) && (strcasecmp(argv[1], "encode") == 0) )
encode(b64fread,b64putc,&context);
Expand Down
2 changes: 1 addition & 1 deletion clear.c
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* software must display the following acknowledgement:
*
* This product includes software developed by David Parsons
* (orc@pell.chi.il.us)
* (orc@pell.portland.or.us)
*
* 4. My name may not be used to endorse or promote products derived
* from this software without specific prior written permission.
Expand Down
3 changes: 2 additions & 1 deletion configure.inc
Original file line number Diff line number Diff line change
Expand Up @@ -491,9 +491,10 @@ AC_PROG_CC () {
cat > /tmp/ngc$$.c << \EOF
#include <stdio.h>
main()
int main()
{
puts("hello, sailor");
exit(0);
}
EOF
Expand Down
2 changes: 1 addition & 1 deletion ravel.1
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,4 @@ Write unnamed attachments to
.Xr uuencode 1 ,
.Xr uuencode 5 .
.Sh AUTHOR
David Parsons (orc@pell.chi.il.us)
David Parsons (orc@pell.portland.or.us)
2 changes: 1 addition & 1 deletion ravel.c
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ main(int argc, char **argv)
fprintf(io.output,
"This is a MIME-encoded message. Decode it with `unravel' or\n"
"any other MIME-unpacking software. Unravel is available at\n"
"http://www.pell.chi.il.us/~orc/Code/mimecode\n");
"http://www.pell.portland.or.us/~orc/Code/mimecode\n");

for (ix = x_optind; ix < argc; ix++) {
if (verbose)
Expand Down
6 changes: 3 additions & 3 deletions tests/test.mime
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ To: orc

This is a MIME-encoded message. Decode it with `unravel' or
any other MIME-unpacking software. Unravel is available at
http://www.pell.chi.il.us/~orc/Code/Mastodon/bin/mimecode/
http://www.pell.portland.or.us/~orc/Code/Mastodon/bin/mimecode/
--Hello, Sailor
Content-Disposition: inline; filename="2340-4.00readme"
Content-type: text/plain; name="2340-4.00readme"
Expand Down Expand Up @@ -211,11 +211,11 @@ cate */
* Video handling moved to video.S by Martin Mares, March 1996
* <mj@k332.feld.cvut.cz>
*
+ * Extended memory detection made more paranoid by orc@pell.chi.il.us =
+ * Extended memory detection made more paranoid by orc@pell.portland.or.us =
(david
+ * parsons) and Nathan Zook (nathan.zook@amd.com), December 1999.
+ *
* Extended memory detection scheme retwiddled by orc@pell.chi.il.us (=
* Extended memory detection scheme retwiddled by orc@pell.portland.or.us (=
david
* parsons) to avoid loadlin confusion, July 1997
*
Expand Down
2 changes: 1 addition & 1 deletion uudecode.1
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ program.
.Xr unravel 1 ,
.Xr uuencode 5
.Sh AUTHOR
David Parsons <orc@pell.chi.il.us>
David Parsons <orc@pell.portland.or.us>

0 comments on commit e18c0ae

Please sign in to comment.