All pastes #2058244 Raw Copy code Copy link Edit

Someone

public text v1 · immutable
#2058244 ·published 2011-05-13 14:02 UTC
rendered paste body
void ast_console_toggle_loglevel(int fd, int level, int state)
{
        int x;
        for (x = 0;x < AST_MAX_CONNECTS; x++) {
                if (fd == consoles[x].fd) {
                        consoles[x].levels[level] = state;
                        return;
                }
        }
}