6e5ee11ca95cd971984038cf65bae00d9c898707 galt Wed Jun 4 15:40:02 2014 -0700 Since we have git, it is easy to rename errabort.c to errAbort.c without losing any history. diff --git src/lib/mime.c src/lib/mime.c index 2914167..8a7084d 100644 --- src/lib/mime.c +++ src/lib/mime.c @@ -1,31 +1,31 @@ /* Routines for processing MIME from a descriptor. * For cgi post, the MIME descriptor is stdin. * We want to parse it as it comes in so that * we can handle very large files if needed. * Large data are saved to tempfiles. * Small data stays as ptr+size in memory. * * This file is copyright 2005 Jim Kent, but license is hereby * granted for all use - public, private or commercial. */ #include "common.h" #include "hash.h" #include "linefile.h" #include "cheapcgi.h" #include "portable.h" -#include "errabort.h" +#include "errAbort.h" #include "mime.h" /* * Note: MIME is a nested structure that makes a tree that streams in depth-first. */ #define MAXPARTSIZE 64LL*1024*1024*1024 /* max size before gets put in a tempfile to save memory. It currently has been set so large that it will not be triggered. */ #define MAXPARTLINESIZE 1024 /* header lines should be small, so bad if bigger than this */ #define MAXDATASIZE 64LL*1024*1024*1024 /* max size allowable for large uploads */ #define MAXBOUNDARY 72+5 /* max size of buffer for boundary 72+--""0 */ enum nlType nlType = nlt_undet; static void setEopMB(struct mimeBuf *b) /* do a search for boundary, set eop End Of Part if found */