diff options
author | Andrew Tridgell <tridge@samba.org> | 2005-05-26 03:22:38 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:17:03 -0500 |
commit | 74dda392261e52e80a4ff24ea08f042e02154ed7 (patch) | |
tree | b1779c5c8678f686834e615f8df464770d5948ee /source4/web_server/esp | |
parent | 98046f037200938bb2532e3c480946653a0b53bd (diff) | |
download | samba-74dda392261e52e80a4ff24ea08f042e02154ed7.tar.gz samba-74dda392261e52e80a4ff24ea08f042e02154ed7.tar.bz2 samba-74dda392261e52e80a4ff24ea08f042e02154ed7.zip |
r6989: - added support for esp style includes (which include a esp file, instead of a ejs file)
- added a test of esp style includes to the esptest html
(This used to be commit af3de9468ee5ba490c991901b7a4aa260c839876)
Diffstat (limited to 'source4/web_server/esp')
-rw-r--r-- | source4/web_server/esp/esp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/web_server/esp/esp.h b/source4/web_server/esp/esp.h index 4503cacbb7..5d343db96e 100644 --- a/source4/web_server/esp/esp.h +++ b/source4/web_server/esp/esp.h @@ -97,7 +97,7 @@ typedef struct Esp { void (*createSession)(EspHandle handle, int timeout); void (*destroySession)(EspHandle handle); char *(*getSessionId)(EspHandle handle); - int (*mapToStorage)(EspHandle handle, char *path, int len, char *uri, + int (*mapToStorage)(EspHandle handle, char *path, int len, const char *uri, int flags); int (*readFile)(EspHandle handle, char **buf, int *len, const char *path); void (*redirect)(EspHandle handle, int code, char *url); |