Changeset 7426d5e4dbbc7360eb762fb28416bd7b122174d5

Show
Ignore:
Timestamp:
06/18/09 21:00:24 (3 years ago)
Author:
Neutron Soutmun <neo.neutron@…>
Children:
b00ac33dcf2ea2064578a0aa96f2d712eb3de00f
Parents:
d05ea7208ff75842bc3c2c4af52a2bdba13e103e, 01863bb35ee1addfb4ee2537a72e21586da5cfb1
git-committer:
Neutron Soutmun <neo.neutron@…> (06/18/09 21:00:24)
Message:

Merge commit 'rahunas-0.1.5-b1' into debian

Files:
17 added
3 modified

Legend:

Unmodified
Added
Removed
  • configure.ac

    r7751a64 r3c938ec  
    44m4_define(major, 0) 
    55m4_define(minor, 1) 
    6 m4_define(micro, 4) 
     6m4_define(micro, 5) 
    77 
    88AC_PREREQ(2.61) 
  • src/rh-config.c

    r927d0c7 r01863bb  
    464464  for (i=0; i < MAX_IFB_IFACE; i++) 
    465465    { 
    466       mask <<= i; 
     466      mask = 1 << i; 
    467467      if (!(ifb_reserved & mask)) 
    468468        { 
  • src/rh-utils.c

    rd5429ac rc576556  
    4444                              unsigned short idx) 
    4545{ 
    46   char* result = NULL; 
     46  char  *result = NULL; 
    4747  gchar *pStart = NULL; 
    4848  gchar *pEnd   = NULL; 
     
    7171    if (current_idx == idx) { 
    7272      result = g_strndup(pStart, pEnd - pStart); 
     73      result = g_strchug (result); 
     74      result = g_strchomp (result); 
    7375      return result; 
    7476    } else {