Changeset 50


Ignore:
Timestamp:
Jul 11, 2006, 11:09:51 PM (18 years ago)
Author:
rainer
Message:

Fix for the fix in revision 48. Released as 2.2.1c

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r48 r50  
    1313dnl start
    1414dnl
    15 AM_INIT_AUTOMAKE(samhain, 2.2.1b)
     15AM_INIT_AUTOMAKE(samhain, 2.2.1c)
    1616AC_CANONICAL_HOST
    1717
  • trunk/docs/Changelog

    r49 r50  
    1 
     12.2.1c
    22        * fix sh_extern.c: sh_ext_add_default() cast to (void) was too early
    33          (Solaris 8 build failure reported by Jesse)
  • trunk/src/sh_extern.c

    r49 r50  
    10801080  int    i;
    10811081
    1082   (void) dummy;
    1083 
    10841082  SL_ENTER(_("sh_ext_add_default"));
    10851083  if (dummy[0] == 'n' ||  dummy[0] == 'N' ||
  • trunk/src/sh_socket.c

    r46 r50  
    224224char * sh_get_sockpass ()
    225225{
    226   int j = 0;
     226  size_t j = 0;
     227
    227228  while (skey->sh_sockpass[2*j] != '\0' && j < sizeof(sh_sockpass_real))
    228229    {
     
    231232    }
    232233  sh_sockpass_real[j] = '\0';
     234
    233235  return sh_sockpass_real;
    234236}
Note: See TracChangeset for help on using the changeset viewer.