X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=miscutil.c;h=6650890ef9b81fe56dec4820a38fe85d6bb710f6;hp=c149a44a056929f53c00979eb0a96224fe0ec696;hb=4153e6ef4a73b240678a99d60df640b86b4e5ff0;hpb=a5823f709d110f48f4bf6d973fda0e0455d1506b diff --git a/miscutil.c b/miscutil.c index c149a44a..6650890e 100644 --- a/miscutil.c +++ b/miscutil.c @@ -1,5 +1,4 @@ -/* vim:ts=3: */ -const char miscutil_rcs[] = "$Id: miscutil.c,v 1.12 2001/06/09 10:55:28 jongfoster Exp $"; +const char miscutil_rcs[] = "$Id: miscutil.c,v 1.14 2001/06/29 21:45:41 oes Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/miscutil.c,v $ @@ -37,6 +36,12 @@ const char miscutil_rcs[] = "$Id: miscutil.c,v 1.12 2001/06/09 10:55:28 jongfost * * Revisions : * $Log: miscutil.c,v $ + * Revision 1.14 2001/06/29 21:45:41 oes + * Indentation, CRLF->LF, Tab-> Space + * + * Revision 1.13 2001/06/29 13:32:14 oes + * Removed logentry from cancelled commit + * * Revision 1.12 2001/06/09 10:55:28 jongfoster * Changing BUFSIZ ==> BUFFER_SIZE * @@ -111,12 +116,12 @@ const char miscutil_rcs[] = "$Id: miscutil.c,v 1.12 2001/06/09 10:55:28 jongfost #include #include -/* - * FIXME: Only need project.h for BUFFER_SIZE. It would be nice - * to remove this dependency. - */ -#include "project.h" -#include "miscutil.h" +/* + * FIXME: Only need project.h for BUFFER_SIZE. It would be nice + * to remove this dependency. + */ +#include "project.h" +#include "miscutil.h" #include "errlog.h" const char miscutil_h_rcs[] = MISCUTIL_H_VERSION; @@ -564,12 +569,12 @@ char *bindup(const char *string, int n) if (NULL == (dup = (char *)malloc(n))) { - return NULL; - } + return NULL; + } else - { - memcpy(dup, string, n); - } + { + memcpy(dup, string, n); + } return dup;