diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2009-04-09 21:11:14 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2009-04-09 21:11:14 +0000 |
commit | f202f14370e35d58d4251c50492cf80a20037b07 (patch) | |
tree | 685ff730093f355a0903ea431e1499312a695657 | |
parent | install-win32/buildinstaller will now always sign executable (diff) | |
download | openvpn-f202f14370e35d58d4251c50492cf80a20037b07.tar.xz |
Added the ability to read the configuration file
from stdin, when "stdin" is given as the config
file name.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@4127 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to '')
-rw-r--r-- | options.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -3058,7 +3058,10 @@ read_config_file (struct options *options, ++level; if (level <= max_recursive_levels) { - fp = fopen (file, "r"); + if (streq (file, "stdin")) + fp = stdin; + else + fp = fopen (file, "r"); if (fp) { line_num = 0; @@ -3075,7 +3078,8 @@ read_config_file (struct options *options, add_option (options, p, file, line_num, level, msglevel, permission_mask, option_types_found, es); } } - fclose (fp); + if (fp != stdin) + fclose (fp); } else { |