By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 645
Collapse All | Expand All

(-)tdebase/twin/workspace.cpp (-4 / +2 lines)
Lines 242-249 Link Here
242
        strcat(filename, home);
242
        strcat(filename, home);
243
        strcat(filename, configfile);
243
        strcat(filename, configfile);
244
244
245
        printf("reading '%s' as kompmgr pidfile\n\n", filename);
246
247
        // Now that we did all that by way of introduction...read the file!
245
        // Now that we did all that by way of introduction...read the file!
248
        FILE *pFile;
246
        FILE *pFile;
249
        char buffer[255];
247
        char buffer[255];
Lines 251-256 Link Here
251
        int kompmgrpid = 0;
249
        int kompmgrpid = 0;
252
        if (pFile)
250
        if (pFile)
253
            {
251
            {
252
            printf("[twin-workspace] Using '%s' as kompmgr pidfile\n\n", filename);
254
            // obtain file size
253
            // obtain file size
255
            fseek (pFile , 0 , SEEK_END);
254
            fseek (pFile , 0 , SEEK_END);
256
            unsigned long lSize = ftell (pFile);
255
            unsigned long lSize = ftell (pFile);
Lines 1094-1101 Link Here
1094
        strcat(filename, home);
1093
        strcat(filename, home);
1095
        strcat(filename, configfile);
1094
        strcat(filename, configfile);
1096
1095
1097
        printf("reading '%s' as kompmgr pidfile\n\n", filename);
1098
1099
        // Now that we did all that by way of introduction...read the file!
1096
        // Now that we did all that by way of introduction...read the file!
1100
        FILE *pFile;
1097
        FILE *pFile;
1101
        char buffer[255];
1098
        char buffer[255];
Lines 1103-1108 Link Here
1103
        int kompmgrpid = 0;
1100
        int kompmgrpid = 0;
1104
        if (pFile)
1101
        if (pFile)
1105
            {
1102
            {
1103
            printf("[twin-workspace] Using '%s' as kompmgr pidfile\n\n", filename);
1106
            // obtain file size
1104
            // obtain file size
1107
            fseek (pFile , 0 , SEEK_END);
1105
            fseek (pFile , 0 , SEEK_END);
1108
            unsigned long lSize = ftell (pFile);
1106
            unsigned long lSize = ftell (pFile);

Return to bug 645