Changeset 25910
- Timestamp:
- 02/06/14 18:28:21 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/titan/titan.c
r25843 r25910 326 326 327 327 if(exitcode == 1) 328 tmpstr = getconfig(" powerofflogo", NULL);328 tmpstr = getconfig("userpowerofflogo", NULL); 329 329 else if(exitcode == 2) 330 tmpstr = getconfig(" restartlogo", NULL);330 tmpstr = getconfig("userrestartlogo", NULL); 331 331 else if(exitcode == 3) 332 tmpstr = getconfig("guirestartlogo", NULL); 333 332 tmpstr = getconfig("userguirestartlogo", NULL); 333 334 if(tmpstr != NULL) { 335 if(file_exist(tmpstr) == 0) 336 tmpstr = NULL; 337 } 338 if(tmpstr == NULL) { 339 if(exitcode == 1) 340 tmpstr = getconfig("powerofflogo", NULL); 341 else if(exitcode == 2) 342 tmpstr = getconfig("restartlogo", NULL); 343 else if(exitcode == 3) 344 tmpstr = getconfig("guirestartlogo", NULL); 345 } 346 334 347 if(tmpstr != NULL) 335 348 {
Note: See TracChangeset
for help on using the changeset viewer.