Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 779016
Collapse All | Expand All

(-)webalizer-2.23-08/output.c (+3 lines)
Lines 65-70 Link Here
65
#include "graphs.h"
65
#include "graphs.h"
66
#include "output.h"
66
#include "output.h"
67
67
68
extern struct response_url * respnotfound;
69
extern struct responsetmp_url * respnotfoundtmp;
70
extern u_long resp_counter;                               /* total 404 counter     */
68
/* internal function prototypes */
71
/* internal function prototypes */
69
void    write_html_head(char *, FILE *);            /* head of html page   */
72
void    write_html_head(char *, FILE *);            /* head of html page   */
70
void    write_html_tail(FILE *);                    /* tail of html page   */
73
void    write_html_tail(FILE *);                    /* tail of html page   */
(-)webalizer-2.23-08/preserve.c (+2 lines)
Lines 57-62 Link Here
57
#include "preserve.h"
57
#include "preserve.h"
58
58
59
struct hist_rec hist[HISTSIZE];              /* history structure array   */
59
struct hist_rec hist[HISTSIZE];              /* history structure array   */
60
extern u_long resp_counter;                               /* total 404 counter     */
61
extern struct response_url * respnotfound;
60
62
61
/*********************************************/
63
/*********************************************/
62
/* GET_HISTORY - load in history file        */
64
/* GET_HISTORY - load in history file        */
(-)webalizer-2.23-08/webalizer.c (+3 lines)
Lines 111-116 int isipaddr(char *); Link Here
111
/* GLOBAL VARIABLES                          */
111
/* GLOBAL VARIABLES                          */
112
/*********************************************/
112
/*********************************************/
113
113
114
struct response_url * respnotfound;
115
struct responsetmp_url * respnotfoundtmp;
116
u_long resp_counter;                               /* total 404 counter     */
114
char    *version     = "2.23";                /* program version          */
117
char    *version     = "2.23";                /* program version          */
115
char    *editlvl     = "08";                  /* edit level               */
118
char    *editlvl     = "08";                  /* edit level               */
116
char    *moddate     = "26-Aug-2013";         /* modification date        */
119
char    *moddate     = "26-Aug-2013";         /* modification date        */
(-)webalizer-2.23-08/webalizer.h (-3 lines)
Lines 144-154 struct response_code { char *desc Link Here
144
/* Response URL structure */
144
/* Response URL structure */
145
struct response_url { char respurl[MAXURLH];       /* resp url struct       */
145
struct response_url { char respurl[MAXURLH];       /* resp url struct       */
146
			u_long    count; };
146
			u_long    count; };
147
struct response_url * respnotfound;
148
struct responsetmp_url { char respurl[MAXURLH];    /* temp resp url struct  */
147
struct responsetmp_url { char respurl[MAXURLH];    /* temp resp url struct  */
149
			u_long    count; };
148
			u_long    count; };
150
struct responsetmp_url * respnotfoundtmp;
151
u_long resp_counter;                               /* total 404 counter     */
152
149
153
/* Country code structure */
150
/* Country code structure */
154
struct	country_code {u_int64_t idx;              /* TLD index number     */
151
struct	country_code {u_int64_t idx;              /* TLD index number     */

Return to bug 779016