1
1

Added missing function prototypes. Added const-ness. Fixed an "empty-then-clause" bug.

Этот коммит содержится в:
Roland Illig 2004-08-16 16:59:43 +00:00
родитель c5694db1ad
Коммит a50890b1a4

Просмотреть файл

@ -108,7 +108,7 @@ smbfs_auth_free (struct smb_authinfo const *a)
} }
static void static void
smbfs_auth_free_all () smbfs_auth_free_all (void)
{ {
if (auth_list) { if (auth_list) {
g_slist_foreach (auth_list, (GFunc)smbfs_auth_free, 0); g_slist_foreach (auth_list, (GFunc)smbfs_auth_free, 0);
@ -1002,7 +1002,7 @@ smbfs_free_bucket (smbfs_connection *bucket)
} }
static smbfs_connection * static smbfs_connection *
smbfs_get_free_bucket () smbfs_get_free_bucket (void)
{ {
int i; int i;
@ -1214,14 +1214,14 @@ static int
smbfs_fake_server_stat (const char *server_url, const char *path, struct stat *buf) smbfs_fake_server_stat (const char *server_url, const char *path, struct stat *buf)
{ {
dir_entry *dentry; dir_entry *dentry;
char *p; const char *p;
if ((p = strrchr (path, '/'))) if ((p = strrchr (path, '/')))
path = p + 1; /* advance until last '/' */ path = p + 1; /* advance until last '/' */
if (!current_info->entries) { if (!current_info->entries) {
if (!smbfs_loaddir (current_info)); /* browse host */ if (!smbfs_loaddir (current_info)) /* browse host */
return -1; return -1;
} }
if (current_info->server_list == True) { if (current_info->server_list == True) {