From f4171e62399a9cba50afbce01cd2ed95c84f25a0 Mon Sep 17 00:00:00 2001 From: belliash Date: Fri, 5 Jul 2013 23:10:17 +0200 Subject: [PATCH] Update to v 0.92 --- cbsi.c | 4 ++-- common.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cbsi.c b/cbsi.c index 4cecb1c..026563e 100644 --- a/cbsi.c +++ b/cbsi.c @@ -455,8 +455,8 @@ int parseCommandLine(int argc, char *argv[]) { void prepareDictionary() { translations = 0; - if(getenv("WEBUI_LANGUAGE") != NULL) { - language = strdup(getenv("WEBUI_LANGUAGE")); + if(getenv("WWW_LANGUAGE") != NULL) { + language = strdup(getenv("WWW_LANGUAGE")); if(global.translation != NULL) { loadDictionary(global.translation); } else { diff --git a/common.h b/common.h index 2e031db..91d3324 100644 --- a/common.h +++ b/common.h @@ -12,7 +12,7 @@ #define ALLOC_CHUNK 10 -#define CBSI_VERSION "0.91" +#define CBSI_VERSION "0.92" #define STDIN 0 #define STDOUT 1