capsel wrote:
                j=strcmp( "log", *(lines+i) );
                printf( "ble\n" );
                if( strcmp( "log", *(lines+i) ) == 0 )
                {
                        printf( "ble2\n" );

it looks to me like you're probably getting an invalid pointer reference. When that happens, your program is undefined. More then likely, you're going out of bounds on your array, try adding some debug code, or looking at it in gdb. You'll want to keep an eye on "i".
--
[email protected] mailing list

Reply via email to