]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Tweak some tabular declarations to look correct on 8-width tabs
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Mon, 11 Jun 2007 22:16:17 +0000 (22:16 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Mon, 11 Jun 2007 22:16:17 +0000 (22:16 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7276 e03df62e-2008-0410-955e-edbf42e46eb7

src/inspircd.cpp

index d040940c49730084f9964e959dae4e756e4c1c12..b7264033edf6e4ba9bb06a6b9bfc640144d2b2f5 100644 (file)
@@ -78,15 +78,15 @@ DWORD WindowsForkStart(InspIRCd * Instance)
 
        // Launch our "forked" process.
        BOOL bSuccess = CreateProcess ( module, // Module (exe) filename
-               GetCommandLine(),                                       // Command line (exe plus parameters from the OS)
-               0,                                                                      // PROCESS_SECURITY_ATTRIBUTES
-               0,                                                                      // THREAD_SECURITY_ATTRIBUTES
-               TRUE,                                                           // We went to inherit handles.
-               startupflags,                                           // Allow us full access to the process and suspend it.
-               0,                                                                      // ENVIRONMENT
-               0,                                                                      // CURRENT_DIRECTORY
-               &startupinfo,                                           // startup info
-               &procinfo);                                                     // process info
+               GetCommandLine(),               // Command line (exe plus parameters from the OS)
+               0,                              // PROCESS_SECURITY_ATTRIBUTES
+               0,                              // THREAD_SECURITY_ATTRIBUTES
+               TRUE,                           // We went to inherit handles.
+               startupflags,                   // Allow us full access to the process and suspend it.
+               0,                              // ENVIRONMENT
+               0,                              // CURRENT_DIRECTORY
+               &startupinfo,                   // startup info
+               &procinfo);                     // process info
 
        if(!bSuccess)
        {
@@ -482,12 +482,12 @@ InspIRCd::InspIRCd(int argc, char** argv)
 
        struct option longopts[] =
        {
-               { "nofork",             no_argument,            &do_nofork,             1       },
-               { "logfile",    required_argument,      NULL,                   'f'     },
-               { "config",             required_argument,      NULL,                   'c'     },
-               { "debug",              no_argument,            &do_debug,              1       },
-               { "nolog",              no_argument,            &do_nolog,              1       },
-               { "runasroot",  no_argument,            &do_root,               1       },
+               { "nofork",     no_argument,            &do_nofork,     1       },
+               { "logfile",    required_argument,      NULL,           'f'     },
+               { "config",     required_argument,      NULL,           'c'     },
+               { "debug",      no_argument,            &do_debug,      1       },
+               { "nolog",      no_argument,            &do_nolog,      1       },
+               { "runasroot",  no_argument,            &do_root,       1       },
                { "version",    no_argument,            &do_version,    1       },
                { 0, 0, 0, 0 }
        };