changeset 949:9a6571938f89

2008-03-04 Brian Masney <masneyb@gftp.org> * lib/rfc959.c - removed unneeded FIXME comment * lib/ftps.c - removed uncommented code * lib/sslcommon.c - updated FIXME comment
author masneyb
date Tue, 04 Mar 2008 12:02:47 +0000
parents 777b9dae77ff
children c7d7a081cd9c
files ChangeLog lib/ftps.c lib/rfc959.c lib/sslcommon.c
diffstat 4 files changed, 10 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat Feb 23 15:00:42 2008 +0000
+++ b/ChangeLog	Tue Mar 04 12:02:47 2008 +0000
@@ -1,3 +1,10 @@
+2008-03-04 Brian Masney <masneyb@gftp.org>
+	* lib/rfc959.c - removed unneeded FIXME comment
+
+	* lib/ftps.c - removed uncommented code
+
+	* lib/sslcommon.c - updated FIXME comment
+
 2008-01-24 Brian Masney <masneyb@gftp.org>
 	* lib/gftp.h lib/rfc959.c lib/protocols.c lib/misc.c - don't store
 	the structure from getaddrinfo()/gethostbyname() in the 
--- a/lib/ftps.c	Sat Feb 23 15:00:42 2008 +0000
+++ b/lib/ftps.c	Tue Mar 04 12:02:47 2008 +0000
@@ -76,8 +76,7 @@
   if (ret < 0)
     return (ret);
 
-  ret = '5'; /* FIXME */
-  /* ret = rfc959_send_command (request, "PROT P\r\n", -1, 1, 0); */
+  ret = rfc959_send_command (request, "PROT P\r\n", -1, 1, 0);
   if (ret < 0)
     return (ret);
   else if (ret == '2')
--- a/lib/rfc959.c	Sat Feb 23 15:00:42 2008 +0000
+++ b/lib/rfc959.c	Tue Mar 04 12:02:47 2008 +0000
@@ -1727,7 +1727,7 @@
   else
     tempstr = g_strdup_printf ("SITE CHMOD %o %s\r\n", mode, file);
 
-  ret = rfc959_send_command (request, tempstr, -1, 1, 0); /* FIXME - add length */
+  ret = rfc959_send_command (request, tempstr, -1, 1, 0);
   g_free (tempstr);
 
   if (ret < 0)
--- a/lib/sslcommon.c	Sat Feb 23 15:00:42 2008 +0000
+++ b/lib/sslcommon.c	Tue Mar 04 12:02:47 2008 +0000
@@ -225,8 +225,7 @@
 #if GLIB_MAJOR_VERSION > 1
   return ((unsigned long) g_thread_self ());
 #else
-  /* FIXME _ call pthread version. Once this is done, the #ifdef below can be
-     removed */
+  /* FIXME - call pthread version. */
   return (0);
 #endif
 }