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

(-)tdelibs/tdecore/kdetcompmgr.cpp (-2 / +1 lines)
Lines 70-83 Link Here
70
        strcat(filename, home);
70
        strcat(filename, home);
71
        strcat(filename, configfile);
71
        strcat(filename, configfile);
72
72
73
        printf("reading '%s' as kompmgr pidfile\n\n", filename);
74
75
        // Now that we did all that by way of introduction...read the file!
73
        // Now that we did all that by way of introduction...read the file!
76
        FILE *pFile;
74
        FILE *pFile;
77
        char buffer[255];
75
        char buffer[255];
78
        pFile = fopen(filename, "r");
76
        pFile = fopen(filename, "r");
79
        int kompmgrpid = 0;
77
        int kompmgrpid = 0;
80
        if (pFile) {
78
        if (pFile) {
79
            printf("[kdetcompmgr] Using '%s' as kompmgr pidfile\n\n", filename);
81
            // obtain file size
80
            // obtain file size
82
            fseek (pFile , 0 , SEEK_END);
81
            fseek (pFile , 0 , SEEK_END);
83
            unsigned long lSize = ftell (pFile);
82
            unsigned long lSize = ftell (pFile);

Return to bug 645