You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@guacamole.apache.org by necouchman <gi...@git.apache.org> on 2018/12/02 02:15:49 UTC

[GitHub] guacamole-server pull request #205: GUACAMOLE-667: Enable loading configurat...

Github user necouchman commented on a diff in the pull request:

    https://github.com/apache/guacamole-server/pull/205#discussion_r238082585
  
    --- Diff: src/guacd/conf-file.c ---
    @@ -188,15 +188,21 @@ guacd_config* guacd_conf_load() {
         conf->key_file = NULL;
     #endif
     
    +    /* Determine path of configuration file */
    +    if(conf_file_path == NULL) {
    +        conf_file_path = getenv("GUACD_CONF_FILE");
    --- End diff --
    
    Ah, yes, seems I overlooked that part of the original message.


---