[BACK]Return to util.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / distrib / utils / sysinst

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/distrib/utils/sysinst/Attic/util.c between version 1.80 and 1.81

version 1.80, 2003/01/11 22:32:43 version 1.81, 2003/01/22 05:59:08
Line 432  ask_verbose_dist()
Line 432  ask_verbose_dist()
   
         if (verbose < 0) {          if (verbose < 0) {
                 msg_display(MSG_verboseextract);                  msg_display(MSG_verboseextract);
                 process_menu(MENU_noyes);                  process_menu(MENU_extract);
                 verbose = yesno;                  verbose = yesno;
                 wclear(stdscr);                  wclear(stdscr);
                 wrefresh(stdscr);                  wrefresh(stdscr);
Line 462  extract_file(path)
Line 462  extract_file(path)
         target_chdir_or_die("/");          target_chdir_or_die("/");
   
         /* now extract set files files into "./". */          /* now extract set files files into "./". */
         tarexit = run_prog(RUN_DISPLAY, NULL,          if (verbose==1)
             "pax -zr%spe -O -f %s", verbose ? "v" : "", path);            tarexit = run_prog(RUN_DISPLAY, NULL,
               "progress -zf %s pax -rpe -O", path);
           else if (verbose==2)
             tarexit = run_prog(RUN_DISPLAY, NULL,
               "pax -zrvpe -f %s -O", path);
           else
             tarexit = run_prog(RUN_DISPLAY, NULL,
               "pax -zrpe -f %s -O", path);
   
         /* Check tarexit for errors and give warning. */          /* Check tarexit for errors and give warning. */
         if (tarexit) {          if (tarexit) {

Legend:
Removed from v.1.80  
changed lines
  Added in v.1.81

CVSweb <webmaster@jp.NetBSD.org>