1999-02-28 Miguel de Icaza <miguel@nuclecu.unam.mx>
* gnome-file-property-dialog.c (create_settings_pane): Simplify the test and fix it.
Этот коммит содержится в:
родитель
8b195d8760
Коммит
c5706b8e57
@ -593,12 +593,13 @@ create_settings_pane (GnomeFilePropertyDialog *fp_dlg)
|
||||
mc_stat (fp_dlg->file_name, &linkstat);
|
||||
|
||||
finish = 0;
|
||||
if (!S_ISREG (fp_dlg->st.st_mode))
|
||||
finish = 1;
|
||||
|
||||
if (S_ISLNK (fp_dlg->st.st_mode))
|
||||
if (!S_ISREG (linkstat.st_mode))
|
||||
if (!S_ISREG (fp_dlg->st.st_mode)){
|
||||
if (S_ISLNK (fp_dlg->st.st_mode)){
|
||||
if (!S_ISREG (linkstat.st_mode))
|
||||
finish = 1;
|
||||
} else
|
||||
finish = 1;
|
||||
}
|
||||
|
||||
if (finish){
|
||||
if (!fp_dlg->can_set_icon) {
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user