freebsd-ports/converters/base64/files/patch-base64.c
Beech Rintoul 03578a43f3 - Fix creation of dos files
- Pass maintainership to submitter

PR:		ports/118568
Submitted by:	Nikola Lecic <nikola.lecic@anthesphoria.net>
Approved by:	linimon (mentor)
2007-12-17 08:35:22 +00:00

17 lines
320 B
C

--- base64.c.orig Sun Nov 11 21:52:10 2007
+++ base64.c Sun Nov 11 21:52:19 2007
@@ -63,13 +63,7 @@
static int ateof= FALSE;
static byte dtable[256];
static int linelength= 0;
-static char eol[]=
-#ifdef FORCE_BINARY_IO
-"\n"
-#else
-"\r\n"
-#endif
-;
+static char eol[]="\n";
static int errcheck= TRUE;
/*:5*/