Changeset 29688
- Timestamp:
- Nov 5, 2010, 5:35:33 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
tags/ipp-20101029/pstamp/scripts/pstamp_request_file
- Property svn:mergeinfo set to
r28052 r29688 271 271 exit 1; 272 272 } 273 $comment = "null" if !$comment; 273 if ($comment) { 274 if ($comment =~ /#/) { 275 print STDERR "WARNING '#' character removed from comment on line $line_num.\n"; 276 $comment =~ s/#/ /; 277 } 278 if (length($comment) > 63) { 279 print STDERR "WARNING comment too long truncating to 63 characters on line $line_num.\n"; 280 $comment = substr($comment, 0, 63); 281 } 282 } else { 283 $comment = "null"; 284 } 274 285 my @vals = split /$sep/, $spec; 275 286 my $nvals = @vals;
Note:
See TracChangeset
for help on using the changeset viewer.
