]> git.sur5r.net Git - bacula/bacula/blobdiff - bacula/src/qt-console/main.cpp
Remove jobq.c constraint that read and write SD must be
[bacula/bacula] / bacula / src / qt-console / main.cpp
index 77c686435c2cb432ac617110be887ba0574611da..5c1b8bde8a78addda7573968e667e8b4eb6d3b75 100644 (file)
@@ -20,7 +20,7 @@
    Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
    02110-1301, USA.
 
-   Bacula® is a registered trademark of John Walker.
+   Bacula® is a registered trademark of Kern Sibbald.
    The licensor of Bacula is the Free Software Foundation Europe
    (FSFE), Fiduciary Program, Sumatrastrasse 25, 8006 Zürich,
    Switzerland, email:ftf@fsfeurope.org.
@@ -55,20 +55,12 @@ extern bool parse_bat_config(CONFIG *config, const char *configfile, int exit_co
 static CONFIG *config;
 static char *configfile = NULL;
 
-#ifdef HAVE_WIN32
-void dummy_free_jcr(JCR *jcr)
-{}
-#endif
-
 int main(int argc, char *argv[])
 {
    int ch;
    bool no_signals = true;
    bool test_config = false;
 
-#ifdef HAVE_WIN32
-   JCR *jcr = new_jcr(sizeof(JCR), dummy_free_jcr);
-#endif
 
    app = new QApplication(argc, argv);        
    app->setQuitOnLastWindowClosed(true);
@@ -143,6 +135,11 @@ int main(int argc, char *argv[])
       usage();
    }
 
+   OSDependentInit();
+#ifdef HAVE_WIN32
+   WSA_Init();                        /* Initialize Windows sockets */
+#endif
+
    if (configfile == NULL) {
       configfile = bstrdup(CONFIG_FILE);
    }
@@ -166,6 +163,7 @@ int main(int argc, char *argv[])
 
 void terminate_console(int /*sig*/)
 {
+// WSA_Cleanup();                  /* TODO: check when we have to call it */
    exit(0);
 }