Changes in / [e4f5ca8:875ba16]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • root_commands.c

    re4f5ca8 r875ba16  
    12931293        else if( g_strncasecmp(cmd[1], "info", len ) == 0 )
    12941294        {
    1295                 bee_group_t *bg;
     1295                bee_group_t *bg = NULL;
    12961296                int n = 0;
    12971297
    12981298                MIN_ARGS(2);
    1299                 bg = bee_group_by_name( irc->b, cmd[2], FALSE );
    1300 
     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                }
    13011309                if( bg )
    13021310                {
Note: See TracChangeset for help on using the changeset viewer.