[BACK]Return to db_command.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / ddb

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

Diff for /src/sys/ddb/db_command.c between version 1.84 and 1.84.4.1

version 1.84, 2006/02/19 18:52:29 version 1.84.4.1, 2006/04/19 04:33:02
Line 373  db_cmd_list(const struct db_command *tab
Line 373  db_cmd_list(const struct db_command *tab
                                 db_putchar('\n');                                  db_putchar('\n');
                                 break;                                  break;
                         }                          }
                         w = strlen(p);                          if (p) {
                         while (w < width) {                                  w = strlen(p);
                                 w = DB_NEXT_TAB(w);                                  while (w < width) {
                                 db_putchar('\t');                                          w = DB_NEXT_TAB(w);
                                           db_putchar('\t');
                                   }
                         }                          }
                 }                  }
         }          }

Legend:
Removed from v.1.84  
changed lines
  Added in v.1.84.4.1

CVSweb <webmaster@jp.NetBSD.org>