Changeset 29672
- Timestamp:
- Nov 4, 2010, 2:17:15 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/pstamp/scripts/pstamp_request_file (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pstamp/scripts/pstamp_request_file
r28052 r29672 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.\n"; 276 $comment =~ s/#/ /; 277 } 278 if (length($comment) > 63) { 279 print STDERR "WARNING comment too long truncating to 63 characters.\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.
