Skip to content

Commit

Permalink
Renamed sort property from BY_USEC to BY_AVGTS.
Browse files Browse the repository at this point in the history
  • Loading branch information
allinurl committed Jul 15, 2015
1 parent 887867b commit 5d2bd80
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion config/goaccess.conf
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ ignore-panel KEYPHRASES
# BY_VISITORS
# BY_DATA
# BY_BW
# BY_USEC
# BY_AVGTS
# BY_PROT
# BY_MTHD
# Available orders:
Expand Down
14 changes: 7 additions & 7 deletions src/sort.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@ const int sort_choices[][SORT_MAX_OPTS] = {
};

static GEnum FIELD[] = {
{"BY_HITS" , SORT_BY_HITS } ,
{"BY_VISITORS" , SORT_BY_VISITORS } ,
{"BY_DATA" , SORT_BY_DATA } ,
{"BY_BW" , SORT_BY_BW } ,
{"BY_USEC" , SORT_BY_AVGTS } ,
{"BY_PROT" , SORT_BY_PROT } ,
{"BY_MTHD" , SORT_BY_MTHD } ,
{"BY_HITS" , SORT_BY_HITS } ,
{"BY_VISITORS" , SORT_BY_VISITORS } ,
{"BY_DATA" , SORT_BY_DATA } ,
{"BY_BW" , SORT_BY_BW } ,
{"BY_AVGTS" , SORT_BY_AVGTS } ,
{"BY_PROT" , SORT_BY_PROT } ,
{"BY_MTHD" , SORT_BY_MTHD } ,
};

static GEnum ORDER[] = {
Expand Down

0 comments on commit 5d2bd80

Please sign in to comment.