diff options
author | Aaron Crane <arc@cpan.org> | 2014-03-18 18:50:38 +0000 |
---|---|---|
committer | Aaron Crane <arc@cpan.org> | 2014-03-18 18:53:02 +0000 |
commit | 626ec6d78ccfe68db9586606c40e6bad60f064cb (patch) | |
tree | 57217aad1640a1e16929b678c98946845d71c454 /cpan/Digest-SHA/SHA.xs | |
parent | 47a9c2580a689eb6252f710c8ff39c9c9fb2c7cb (diff) | |
download | perl-626ec6d78ccfe68db9586606c40e6bad60f064cb.tar.gz |
Upgrade Digest-SHA from 5.87 to 5.88
[DELTA]
- added OUTPUT clause in SHA.xs to silence compiler warning
-- ref. shaclose()
- changed text file test (-T) to act on filehandles
-- ref. addfile portable mode
-- improves consistency when reading from STDIN
-- still acts on filenames for early Perls (< 5.6)
- added -M and -V options to shasum
-- undocumented: for development and testing use only
Diffstat (limited to 'cpan/Digest-SHA/SHA.xs')
-rw-r--r-- | cpan/Digest-SHA/SHA.xs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpan/Digest-SHA/SHA.xs b/cpan/Digest-SHA/SHA.xs index 743337fdda..c38fcc4d9d 100644 --- a/cpan/Digest-SHA/SHA.xs +++ b/cpan/Digest-SHA/SHA.xs @@ -34,6 +34,8 @@ shaclose(s) CODE: RETVAL = shaclose(s); sv_setiv(SvRV(ST(0)), 0); +OUTPUT: + RETVAL SHA * shadup(s) |