Fixed whitespace in all files (no tabs)
[senf.git] / Utils / DaemonTools.cc
index 62bba29..e2da8a3 100644 (file)
@@ -40,11 +40,11 @@ prefix_ void senf::daemonize()
 {
     int pid = fork();
     if (pid < 0)
-       throw senf::SystemException("fork",errno);
+        throw senf::SystemException("fork",errno);
     if (pid > 0)
-       ::_exit(0);
+        ::_exit(0);
     if (::setsid() < 0)
-       throw senf::SystemException("setsid",errno);
+        throw senf::SystemException("setsid",errno);
 }
 
 prefix_ void senf::redirect_stdio(std::string const & path)
@@ -64,4 +64,8 @@ prefix_ void senf::redirect_stdio(std::string const & path)
 \f
 // Local Variables:
 // mode: c++
+// fill-column: 100
+// c-file-style: "senf"
+// indent-tabs-mode: nil
+// ispell-local-dictionary: "american"
 // End: