so the server can be moved or mirrored with less pain. */
char *p;
int offset = (int) (long) cmd->info;
+#ifndef OS2
arg = ap_os_canonical_filename(cmd->pool, arg);
+#endif
if (ap_os_is_path_absolute(arg))
p = apr_pstrdup(cmd->pool, arg);
else
AP_DECLARE(const char *) ap_server_root_relative(apr_pool_t *p, const char *file)
{
+#ifndef OS2
+ file = ap_os_canonical_filename(p, file);
+#endif
if(ap_os_is_path_absolute(file))
return file;
return ap_make_full_path(p, ap_server_root, file);