From: wessels <> Date: Thu, 5 Sep 1996 04:51:13 +0000 (+0000) Subject: make mkrfc850() use a normal variable instead of a pointer X-Git-Tag: SQUID_3_0_PRE1~5854 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f630d475eb6e09aa69cbc85936cd702db861c722;p=thirdparty%2Fsquid.git make mkrfc850() use a normal variable instead of a pointer --- diff --git a/include/util.h b/include/util.h index 6cf0f81c4c..1cdfac3a60 100644 --- a/include/util.h +++ b/include/util.h @@ -1,5 +1,5 @@ /* - * $Id: util.h,v 1.10 1996/08/26 22:47:46 wessels Exp $ + * $Id: util.h,v 1.11 1996/09/04 22:51:13 wessels Exp $ * * AUTHOR: Harvest Derived * @@ -183,7 +183,7 @@ extern int Harvest_debug_levels[]; void debug_flag _PARAMS((char *)); char *mkhttpdlogtime _PARAMS((time_t *)); -extern char *mkrfc850 _PARAMS((time_t *)); +extern char *mkrfc850 _PARAMS((time_t)); extern time_t parse_rfc850 _PARAMS((char *str)); extern void init_log3 _PARAMS((char *pn, FILE * a, FILE * b)); extern void debug_init();