Changes in / [875ba16:e4f5ca8]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • root_commands.c

    r875ba16 re4f5ca8  
    12931293        else if( g_strncasecmp(cmd[1], "info", len ) == 0 )
    12941294        {
    1295                 bee_group_t *bg = NULL;
     1295                bee_group_t *bg;
    12961296                int n = 0;
    12971297
    12981298                MIN_ARGS(2);
    1299 
    1300                 for( l = irc->b->groups; l; l = l->next )
    1301                 {
    1302                         bee_group_t *bg = l->data;
    1303                         if( !strcmp( bg->name, cmd[2] ) )
    1304                         {
    1305                                 bg = l->data;
    1306                                 break;
    1307                         }
    1308                 }
     1299                bg = bee_group_by_name( irc->b, cmd[2], FALSE );
     1300
    13091301                if( bg )
    13101302                {
Note: See TracChangeset for help on using the changeset viewer.