view netinstall/version.pl @ 3504:3151d67d15d2

[xemacs-hg @ 2006-07-11 23:40:15 by james] Fix a dangerous strcpy by ensuring that the target string is exactly big enough to hold the data. <m3irm9ywg0.fsf@jerrypc.cs.usu.edu>
author james
date Tue, 11 Jul 2006 23:40:17 +0000
parents 3078fd1074e8
children
line wrap: on
line source

while (<STDIN>) {
  if (/^\$Revision:\s*([0-9\.]*)/) {
    print "char *version = \"$1\";\n";
    print "static char *id = \"\\n%%% setup-version $1\\n\";\n";
  }
}