[BACK]Return to run.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/run.c between version 1.5 and 1.6

version 1.5, 1998/06/20 13:05:50 version 1.6, 1998/08/10 02:23:45
Line 153  va_prog_cmdstr(char *cmd, va_list ap)
Line 153  va_prog_cmdstr(char *cmd, va_list ap)
 {  {
         static char command[STRSIZE];          static char command[STRSIZE];
   
         bzero(command, STRSIZE);          memset(command, 0, STRSIZE);
         (void)vsnprintf(command, STRSIZE, cmd, ap);          (void)vsnprintf(command, STRSIZE, cmd, ap);
         return (command);          return (command);
 }  }

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6

CVSweb <webmaster@jp.NetBSD.org>