diff options
author | Benjamin Otte <otte@gnome.org> | 2009-06-12 10:40:39 +0200 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2009-06-12 14:41:12 +0200 |
commit | 1ef4f0d82da583c97c93052b6e4ccc632351746d (patch) | |
tree | aaa77d460cb4416207b6917de402bc3f42fcfcbe /daemon | |
parent | 3175d847032e3105c4ade67ba0ab032c859b2b2c (diff) | |
download | gvfs-1ef4f0d82da583c97c93052b6e4ccc632351746d.tar.gz |
[FTP] indentation fixes
Diffstat (limited to 'daemon')
-rw-r--r-- | daemon/gvfsbackendftp.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/daemon/gvfsbackendftp.h b/daemon/gvfsbackendftp.h index 99134e27..4e6b4014 100644 --- a/daemon/gvfsbackendftp.h +++ b/daemon/gvfsbackendftp.h @@ -74,7 +74,7 @@ typedef struct _GVfsBackendFtpClass GVfsBackendFtpClass; struct _GVfsBackendFtp { - GVfsBackend backend; + GVfsBackend backend; GSocketConnectable * addr; GSocketClient * connection_factory; @@ -83,7 +83,7 @@ struct _GVfsBackendFtp char * password; /* password or NULL for anonymous */ char * host_display_name; - GVfsFtpSystem system; /* the system from the SYST response */ + GVfsFtpSystem system; /* the system from the SYST response */ int features; /* GVfsFtpFeatures that are supported */ int workarounds; /* GVfsFtpWorkarounds in use - int because it's atomic */ @@ -92,9 +92,9 @@ struct _GVfsBackendFtp GVfsFtpDirCache * dir_cache; /* directory cache */ /* connection collection - accessed from gvfsftptask.c */ - GMutex * mutex; /* mutex protecting the following variables */ - GCond * cond; /* cond used to signal tasks waiting on the mutex */ - GQueue * queue; /* queue containing the connections */ + GMutex * mutex; /* mutex protecting the following variables */ + GCond * cond; /* cond used to signal tasks waiting on the mutex */ + GQueue * queue; /* queue containing the connections */ guint connections; /* current number of connections */ guint busy_connections; /* current number of connections being used for reads/writes */ guint max_connections; /* upper server limit for number of connections - dynamically generated */ |