diff options
author | Jan Kneschke <jan@kneschke.de> | 2005-07-26 08:27:08 +0000 |
---|---|---|
committer | Jan Kneschke <jan@kneschke.de> | 2005-07-26 08:27:08 +0000 |
commit | 487dd60613ba301da69cbe163dc85f45226d65bf (patch) | |
tree | 18259e8fa84a75ade381e9989a307004c2b98692 /src/mod_cml_funcs.c | |
parent | adcc83d26fbd6b29520bbea0eafb893b2eb83a84 (diff) | |
download | lighttpd-git-487dd60613ba301da69cbe163dc85f45226d65bf.tar.gz |
added fucntionname to errormsg
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.3.x@476 152afb58-edef-0310-8abb-c4023f1b3aa9
Diffstat (limited to 'src/mod_cml_funcs.c')
-rw-r--r-- | src/mod_cml_funcs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mod_cml_funcs.c b/src/mod_cml_funcs.c index 9f5b4d9b..99553892 100644 --- a/src/mod_cml_funcs.c +++ b/src/mod_cml_funcs.c @@ -49,12 +49,12 @@ int f_crypto_md5(lua_State *L) { b.size = sizeof(hex); if (n != 1) { - lua_pushstring(L, "expected one argument"); + lua_pushstring(L, "md5: expected one argument"); lua_error(L); } if (!lua_isstring(L, 1)) { - lua_pushstring(L, "argument has to be a string"); + lua_pushstring(L, "md5: argument has to be a string"); lua_error(L); } |