From 3ca520d2e0f8cdc4cdcb99ce7c0711f5affcfe3e Mon Sep 17 00:00:00 2001 From: Michiel Broek Date: Thu, 31 Jan 2002 21:09:15 +0000 Subject: [PATCH] Experimental patch for outbound without translation --- mbcico/filelist.c | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/mbcico/filelist.c b/mbcico/filelist.c index 0f2c1385..adae2c1c 100644 --- a/mbcico/filelist.c +++ b/mbcico/filelist.c @@ -191,13 +191,14 @@ static void check_flo(file_list **lst, char *nm) *q = '\0'; p = buf2; } - } else { - if (strncasecmp(p, CFG.uxpath, strlen(CFG.uxpath)) == 0) { - for (p=p, q=buf2+strlen(buf2); *p; p++, q++) - *q = ((*p) == '\\')?'/':tolower(*p); - *q = '\0'; - p = buf2; - } +// FIXME: removed because it is useless, but it may break some systems. +// } else { +// if (strncasecmp(p, CFG.uxpath, strlen(CFG.uxpath)) == 0) { +// for (p=p, q=buf2+strlen(buf2); *p; p++, q++) +// *q = ((*p) == '\\')?'/':tolower(*p); +// *q = '\0'; +// p = buf2; +// } } if ((q=strrchr(p,'/')))