source: freewrt/package/osiris/patches/03-openssl-0.9.8+.patch@ 9df7618

freewrt_1_0 freewrt_2_0
Last change on this file since 9df7618 was 475ad56, checked in by Waldemar Brodkorb <wbx@…>, 20 years ago

add OpenWrt trunk revision 3830.

git-svn-id: svn://www.freewrt.org/trunk/freewrt@1 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 735 bytes
  • src/osirismd/md_control.c

    diff -ruN osiris-4.1.9-old/src/osirismd/md_control.c osiris-4.1.9-new/src/osirismd/md_control.c
    old new  
    32623262            int index;
    32633263            char checksum[41];
    32643264
    3265             SHA_Init( &context );
    3266             SHA_Update( &context, key, (unsigned long)keysize );
    3267             SHA_Final( &( digest[0] ), &context );
     3265            SHA1_Init( &context );
     3266            SHA1_Update( &context, key, (unsigned long)keysize );
     3267            SHA1_Final( &( digest[0] ), &context );
    32683268
    32693269            for ( index = 0; index < SHA_DIGEST_LENGTH; index++ )
    32703270            {
Note: See TracBrowser for help on using the repository browser.