diff options
author | Peter Hofmann <scm@uninformativ.de> | 2014-06-19 10:38:32 +0200 |
---|---|---|
committer | Peter Hofmann <scm@uninformativ.de> | 2014-06-19 10:38:32 +0200 |
commit | c1dfb186ac3c7ff8f88826181123b15ee9572460 (patch) | |
tree | a60f6c6741f202bf6bd85a4502e749e40d62a045 | |
parent | 712ef58dba17f7817f0ed77b74594fda49b90ea3 (diff) | |
download | lariza-c1dfb186ac3c7ff8f88826181123b15ee9572460.tar.gz |
Move reading _FIFO_SUFFIX to the right place
-rw-r--r-- | browser.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -77,6 +77,7 @@ static int cooperative_pipe_fp = 0; static gchar *download_dir = "/tmp"; static gint downloads_indicated = 0; static Window embed = 0; +static gchar *fifo_suffix = "main"; static gchar *first_uri = NULL; static gdouble global_zoom = 1.0; static GHashTable *keywords = NULL; @@ -329,14 +330,9 @@ void cooperation_setup(void) { GIOChannel *towatch; - const gchar *e; gchar *fifofilename, *fifopath; - e = g_getenv(__NAME_UPPERCASE__"_FIFO_SUFFIX"); - if (e != NULL) - fifofilename = g_strdup_printf("%s-%s", __NAME__".fifo", e); - else - fifofilename = g_strdup(__NAME__".fifo"); + fifofilename = g_strdup_printf("%s-%s", __NAME__".fifo", fifo_suffix); fifopath = g_build_filename(g_get_user_runtime_dir(), fifofilename, NULL); g_free(fifofilename); @@ -581,6 +577,10 @@ grab_environment_configuration(void) if (e != NULL) download_dir = g_strdup(e); + e = g_getenv(__NAME_UPPERCASE__"_FIFO_SUFFIX"); + if (e != NULL) + fifo_suffix = g_strdup(e); + e = g_getenv(__NAME_UPPERCASE__"_ZOOM"); if (e != NULL) global_zoom = atof(e); |