22a23 > // fix type conversion error josswern 23.02.2011 916c917,919 < char *start = strchr(ftpResponse(3), '('); --- > // fix type conversion error josswern 23.02.2011 > const char *start; // statt char *start 23.02.11 > start = strchr(ftpResponse(3), '('); 968c971,972 < char *start = strchr(ftpResponse(3), '|'); --- > // fix type conversion error josswern 23.02.2011 > const char *start = strchr(ftpResponse(3), '|'); // statt char *start = strchr(ftpResponse(3), '|'); josswern