2
0
Fork 0

[mod_userdir] Removed debug prints

This commit is contained in:
Thomas Porzelt 2010-04-17 15:45:32 +02:00
parent 852ff8ecf6
commit f528fc9851
1 changed files with 0 additions and 3 deletions

View File

@ -112,7 +112,6 @@ static liHandlerResult userdir(liVRequest *vr, gpointer param, gpointer *context
// user found
g_string_append(vr->physical.doc_root, pwd.pw_dir);
g_string_append_c(vr->physical.doc_root, G_DIR_SEPARATOR);
g_print("home: %s\n", pwd.pw_dir);
}
for (i = 0; i < parts->len; i++) {
@ -142,8 +141,6 @@ static liHandlerResult userdir(liVRequest *vr, gpointer param, gpointer *context
g_string_truncate(vr->request.uri.path, 0);
g_string_append_len(vr->request.uri.path, GSTR_LEN(vr->wrk->tmp_str));
g_print("phys.path: %s req.path: %s\n", vr->physical.path->str, vr->request.uri.path->str);
return LI_HANDLER_GO_ON;
}