diff options
author | Jorge Arellano Cid <jcid@dillo.org> | 2009-07-17 19:19:35 -0400 |
---|---|---|
committer | Jorge Arellano Cid <jcid@dillo.org> | 2009-07-17 19:19:35 -0400 |
commit | 2ee5e732c456c722b1456bdbc8b203098681b4de (patch) | |
tree | b71550eb13832ea37d3a5a5ae52b6990b28f2da2 /dpi/file.c | |
parent | d53595dd6d4a1d6431aa8d439c63e30cb27525a0 (diff) |
Added a_Dpip_get_attr_l() to DPIP's API
Diffstat (limited to 'dpi/file.c')
-rw-r--r-- | dpi/file.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -854,12 +854,12 @@ static void *File_serve_client(void *data) _MSG("dpip_tag={%s}\n", dpip_tag); if (dpip_tag) { - cmd = a_Dpip_get_attr(dpip_tag, strlen(dpip_tag), "cmd"); + cmd = a_Dpip_get_attr(dpip_tag, "cmd"); if (cmd) { if (strcmp(cmd, "DpiBye") == 0) { DPIBYE = 1; } else { - url = a_Dpip_get_attr(dpip_tag, strlen(dpip_tag), "url"); + url = a_Dpip_get_attr(dpip_tag, "url"); if (!url) MSG("file.dpi:: Failed to parse 'url'\n"); } |