Subversion Repositories SvarDOS

Rev

Rev 415 | Rev 421 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 415 Rev 418
Line 223... Line 223...
223
    /* if dst is a directory then append a backslash */
223
    /* if dst is a directory then append a backslash */
224
    setup->dstlen = path_appendbkslash_if_dir(setup->dst);
224
    setup->dstlen = path_appendbkslash_if_dir(setup->dst);
225
  }
225
  }
226
 
226
 
227
  /* DEBUG: output setup content ("if 1" to enable) */
227
  /* DEBUG: output setup content ("if 1" to enable) */
228
  #if 1
228
  #if 0
229
  printf("src: ");
229
  printf("src: ");
230
  for (i = 0; i < setup->src_count; i++) {
230
  for (i = 0; i < setup->src_count; i++) {
231
    if (i != 0) printf(", ");
231
    if (i != 0) printf(", ");
232
    printf("%s [%c]", setup->src[i], setup->src_asciimode[i]);
232
    printf("%s [%c]", setup->src[i], setup->src_asciimode[i]);
233
  }
233
  }