diff options
author | Kozlov Dmitry <dima@server> | 2010-09-03 16:06:42 +0400 |
---|---|---|
committer | Kozlov Dmitry <dima@server> | 2010-09-03 16:06:42 +0400 |
commit | d00c2d1e3afc883683b3c40b6fbb116c3746b8d0 (patch) | |
tree | 918c9cbe47a114ce691175e66ccd0f90a5f5fa3a /accel-pptpd/triton | |
parent | a8ebd78892b99cad6aa055d1e0024df485536c17 (diff) | |
download | accel-ppp-d00c2d1e3afc883683b3c40b6fbb116c3746b8d0.tar.gz accel-ppp-d00c2d1e3afc883683b3c40b6fbb116c3746b8d0.zip |
lcp: implemented echo request/reply
Diffstat (limited to 'accel-pptpd/triton')
-rw-r--r-- | accel-pptpd/triton/conf_file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/accel-pptpd/triton/conf_file.c b/accel-pptpd/triton/conf_file.c index e99afaa..c6ba745 100644 --- a/accel-pptpd/triton/conf_file.c +++ b/accel-pptpd/triton/conf_file.c @@ -164,12 +164,12 @@ static struct conf_option_t *find_item(struct conf_sect_t *sect, const char *nam return NULL; } -struct conf_sect_t * conf_get_section(const char *name) +__export struct conf_sect_t * conf_get_section(const char *name) { return find_sect(name); } -char * conf_get_opt(const char *sect, const char *name) +__export char * conf_get_opt(const char *sect, const char *name) { struct conf_option_t *opt; struct conf_sect_t *s = conf_get_section(sect); |