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 813
Collapse All | Expand All

(-)tdelibs/kinit/lnusertemp.c (-4 / +4 lines)
Lines 257-265 Link Here
257
257
258
  if (strcmp(argv[1], "tmp") == 0)
258
  if (strcmp(argv[1], "tmp") == 0)
259
  {
259
  {
260
    tmp_prefix = (char *)malloc(strlen(tmp)+strlen("/kde-")+1);
260
    tmp_prefix = (char *)malloc(strlen(tmp)+strlen("/tde-")+1);
261
    strcpy(tmp_prefix, tmp);
261
    strcpy(tmp_prefix, tmp);
262
    strcat(tmp_prefix, "/kde-"); 
262
    strcat(tmp_prefix, "/tde-"); 
263
    
263
    
264
    kde_prefix = "/tmp-"; 
264
    kde_prefix = "/tmp-"; 
265
  }
265
  }
Lines 277-285 Link Here
277
    if (!tmp || !tmp[0]) 
277
    if (!tmp || !tmp[0]) 
278
      tmp = "/var/tmp";
278
      tmp = "/var/tmp";
279
279
280
    tmp_prefix = (char *)malloc(strlen(tmp)+strlen("/kdecache-")+1);
280
    tmp_prefix = (char *)malloc(strlen(tmp)+strlen("/tdecache-")+1);
281
    strcpy(tmp_prefix, tmp );
281
    strcpy(tmp_prefix, tmp );
282
    strcat(tmp_prefix, "/kdecache-" );
282
    strcat(tmp_prefix, "/tdecache-" );
283
283
284
    kde_prefix = "/cache-"; 
284
    kde_prefix = "/cache-"; 
285
  }
285
  }

Return to bug 813