Changeset 3835
- Timestamp:
- 07/27/10 19:36:14 (2 years ago)
- Files:
-
- trunk/node/lib/Munin/Node/SpoolReader.pm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/node/lib/Munin/Node/SpoolReader.pm
r3834 r3835 85 85 } 86 86 87 # FIXME: slurp the rest of the file88 87 # FIXME: shouldn't need to add the epoch line back in manually 89 return join '', "timestamp $epoch\n", <$fh>; 88 local $/; # slurp the rest of the file 89 return "timestamp $epoch\n" . <$fh>; 90 90 } 91 91
