[ostree] trivial-httpd: fix indentation



commit 26bb93ac243b7387ef9749fd30cd1d20de90f895
Author: Giuseppe Scrivano <gscrivan redhat com>
Date:   Thu May 7 11:09:17 2015 +0200

    trivial-httpd: fix indentation
    
    Signed-off-by: Giuseppe Scrivano <gscrivan redhat com>

 src/ostree/ot-builtin-trivial-httpd.c |   22 +++++++++++-----------
 1 files changed, 11 insertions(+), 11 deletions(-)
---
diff --git a/src/ostree/ot-builtin-trivial-httpd.c b/src/ostree/ot-builtin-trivial-httpd.c
index 7d437fb..1171714 100644
--- a/src/ostree/ot-builtin-trivial-httpd.c
+++ b/src/ostree/ot-builtin-trivial-httpd.c
@@ -126,17 +126,17 @@ is_safe_to_access (struct stat *stbuf)
 static void
 close_socket (SoupMessage *msg, gpointer user_data)
 {
-       SoupSocket *sock = user_data;
-       int sockfd;
+  SoupSocket *sock = user_data;
+  int sockfd;
 
-       /* Actually calling soup_socket_disconnect() here would cause
-        * us to leak memory, so just shutdown the socket instead.
-        */
-       sockfd = soup_socket_get_fd (sock);
+  /* Actually calling soup_socket_disconnect() here would cause
+   * us to leak memory, so just shutdown the socket instead.
+   */
+  sockfd = soup_socket_get_fd (sock);
 #ifdef G_OS_WIN32
-       shutdown (sockfd, SD_SEND);
+  shutdown (sockfd, SD_SEND);
 #else
-       shutdown (sockfd, SHUT_WR);
+  shutdown (sockfd, SHUT_WR);
 #endif
 }
 
@@ -436,9 +436,9 @@ ostree_builtin_trivial_httpd (int argc, char **argv, GCancellable *cancellable,
       g_autoptr(GFileInfo) info = NULL;
 
       info = g_file_query_info (app->root,
-                               G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK,
-                               G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
-                               cancellable, error);
+                                G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK,
+                                G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS,
+                                cancellable, error);
       if (!info)
         goto out;
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]