it contains patches from Martynas Venckus: - net-support.c: HTTP header only needs to be ASCII in the token - xmlparse.c: Convert feed title to target charset, too. Should probaly be in interface.c - main.c, interface.h, interface.c: Add a signal handler for resizing to work on many other ncurses implementations - conversions.c: Determine output charset with nl_langinfo() ok kili@
21 lines
468 B
Plaintext
21 lines
468 B
Plaintext
$OpenBSD: patch-conversions_c,v 1.8 2008/09/12 20:07:15 martynas Exp $
|
|
--- conversions.c.orig Mon Jul 28 12:26:16 2008
|
|
+++ conversions.c Fri Sep 12 22:33:53 2008
|
|
@@ -31,7 +31,7 @@
|
|
#include <errno.h>
|
|
#include <libxml/HTMLparser.h>
|
|
#include <langinfo.h>
|
|
-/*#include <md5.h>*/
|
|
+#include <md5.h>
|
|
|
|
#include "os-support.h"
|
|
|
|
@@ -51,7 +51,6 @@
|
|
#include "ui-support.h"
|
|
#include "setup.h"
|
|
#include "digcalc.h"
|
|
-#include "md5.h"
|
|
|
|
extern struct entity *first_entity;
|
|
|