diff uip/pshsbr.c @ 12:441a2190cfae

Lion fix
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sat, 21 Apr 2012 13:10:49 +0900
parents a6481689f99c
children 3c5835cca094
line wrap: on
line diff
--- a/uip/pshsbr.c	Fri Nov 07 20:20:35 2008 +0000
+++ b/uip/pshsbr.c	Sat Apr 21 13:10:49 2012 +0900
@@ -1,6 +1,6 @@
 /* popsbr.c - POP client subroutines */
 #ifndef	lint
-static char ident[] = "@(#)$Id$";
+static char ident[] = "@(#)$Id: pshsbr.c,v 1.2 2006/12/05 18:18:13 kono Exp $";
 #endif /* lint */
 
 #if defined(NNTP) && !defined(PSHSBR)
@@ -324,7 +324,7 @@
 	    0, 0, 0, 0) == OK)
 	return OK;
     if (traverse (action, "XHDR NONAME %d-%d",
-	    (targ_t)xtnd_first, (targ_t)xtnd_last, 0, 0) == OK)
+	    (targ_t)xtnd_first, (targ_t)xtnd_last, (char*)0, (char*)0) == OK)
 	return OK;
 
     status = NOTOK;
@@ -421,9 +421,9 @@
         (*action) ();
 {
 #ifndef NNTP
-    return traverse (action, "RETR %d", (targ_t)msgno, 0, 0, 0);
+    return traverse (action, "RETR %d", (targ_t)msgno, (char*)0, (char*)0, (char*)0);
 #else	/* NNTP */
-    return traverse (action, "ARTICLE %d", (targ_t)msgno, 0, 0, 0);
+    return traverse (action, "ARTICLE %d", (targ_t)msgno, (char*)0, (char*)0, (char*)0);
 #endif	/* NNTP */
 }
 
@@ -497,9 +497,9 @@
         (*action) ();
 {
 #ifndef NNTP
-    return traverse (action, "TOP %d %d", (targ_t)msgno, (targ_t)lines, 0, 0);
+    return traverse (action, "TOP %d %d", (targ_t)msgno, (targ_t)lines, (char*)0, (char*)0);
 #else	/* NNTP */
-    return traverse (action, "HEAD %d", (targ_t)msgno, 0, 0, 0);
+    return traverse (action, "HEAD %d", (targ_t)msgno, (char*)0, (char*)0, (char*)0);
 #endif	/* NNTP */
 }