Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv23563/src
Modified Files:
proxy.c ui.h
Log Message:
A small patch by Ethan Blanton to fix proxy problems. We conform!
Index: proxy.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/proxy.c,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -d -r1.42 -r1.43
--- proxy.c 31 May 2002 02:00:41 -0000 1.42
+++ proxy.c 5 Aug 2002 07:56:37 -0000 1.43
@@ -222,8 +222,8 @@
return fd;
}
-#define HTTP_GOODSTRING "HTTP/1.0 200 Connection established"
-#define HTTP_GOODSTRING2 "HTTP/1.1 200 Connection established"
+#define HTTP_GOODSTRING "HTTP/1.0 200"
+#define HTTP_GOODSTRING2 "HTTP/1.1 200"
static void http_canread(gpointer data, gint source, GaimInputCondition cond)
{
Index: ui.h
===================================================================
RCS file: /cvsroot/gaim/gaim/src/ui.h,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- ui.h 2 Aug 2002 04:52:48 -0000 1.43
+++ ui.h 5 Aug 2002 07:56:37 -0000 1.44
@@ -81,6 +81,11 @@
#define FACE_YELL 15
#define FACE_TOTAL 16
+#define GAIM_PIXMAP_ICON 0
+#define GAIM_PIXMAP_ERROR 1
+#define GAIM_PIXMAP_WARNING 2
+#define GAIM_PIXMAP_
+
struct debug_window {
GtkWidget *window;
GtkWidget *entry;
|