30 lines
786 B
Plaintext
30 lines
786 B
Plaintext
$OpenBSD: patch-src_dillo_c,v 1.3 2003/02/18 15:53:18 couderc Exp $
|
|
--- src/dillo.c.orig Sun Feb 9 01:22:14 2003
|
|
+++ src/dillo.c Tue Feb 18 17:47:21 2003
|
|
@@ -46,6 +46,7 @@
|
|
#include "interface.h"
|
|
#include "dw.h"
|
|
#include "cookies.h"
|
|
+#include "debug.h"
|
|
|
|
|
|
/*
|
|
@@ -220,7 +221,7 @@ gint main(int argc, char *argv[])
|
|
}
|
|
|
|
/* Send a delayed locale-related message */
|
|
- g_print("Setting locale to %s...\n", curr_locale);
|
|
+ DEBUG_MSG(3, "Setting locale to %s...\n", curr_locale);
|
|
g_free(curr_locale);
|
|
|
|
/* This lets threads in the file module end peacefully when aborted
|
|
@@ -290,7 +291,7 @@ gint main(int argc, char *argv[])
|
|
a_Dw_freeall();
|
|
a_History_free();
|
|
|
|
- g_print("Dillo: normal exit!\n");
|
|
+ DEBUG_MSG(3, "Dillo: normal exit!\n");
|
|
return 0;
|
|
}
|
|
|