mirror of
https://gitlab.gnome.org/GNOME/nautilus
synced 2024-11-05 16:04:31 +00:00
- fix should_look_for_dot_directory_file
This commit is contained in:
parent
046369b55d
commit
bd78f1315d
2 changed files with 9 additions and 2 deletions
|
@ -1,3 +1,11 @@
|
|||
2002-07-17 Bastien Nocera <hadess@hadess.net>
|
||||
|
||||
* libnautilus-private/nautilus-directory-async.c:
|
||||
(should_look_for_dot_directory_file): fix function not to run
|
||||
eel_str_has_prefix against NULL, either we use a NULL terminator to
|
||||
the array, or G_N_ELEMENTS. Makes rio500: work, and should speed up
|
||||
most network methods. (Closes: #78951)
|
||||
|
||||
2002-07-11 Michael Meeks <michael@ximian.com>
|
||||
|
||||
* components/*/.server.in -> *.server.in.in
|
||||
|
|
|
@ -1644,8 +1644,7 @@ should_look_for_dot_directory_file (NautilusFile *file)
|
|||
"favorites:",
|
||||
"start-here:",
|
||||
"applications:",
|
||||
"all-applications:",
|
||||
NULL
|
||||
"all-applications:"
|
||||
};
|
||||
|
||||
uri = file->details->directory->details->uri;
|
||||
|
|
Loading…
Reference in a new issue