diff lib/config_file.c @ 526:990088b18285

2004-8-9 Brian Masney <masneyb@gftp.org> * lib/config_file.c lib/options.h lib/rfc959.c - fixed warnings about unitialized members in the structure * lib/pty.c (gftp_exec) - setup stderr when running the program * lib/sshv2.c src/uicommon/gftpui.h - fixed signed/unsigned integer comparisions * lib/sshv2.c - added sshv2_copy_param_options() * src/gtk/options_dialog.c - compile fix when compiling against GTK+ 1.2
author masneyb
date Tue, 10 Aug 2004 01:55:53 +0000
parents fbb5a02beddb
children 7f54d0c0edbc
line wrap: on
line diff
--- a/lib/config_file.c	Sun Aug 01 11:03:39 2004 +0000
+++ b/lib/config_file.c	Tue Aug 10 01:55:53 2004 +0000
@@ -1224,30 +1224,34 @@
    gftp_option_type_enum in gftp.h */
 gftp_option_type_var gftp_option_types[] = {
   {gftp_config_file_read_text, gftp_config_file_write_text, 
-   gftp_config_file_copy_text, gftp_config_file_compare_text, NULL, NULL, NULL},
+   gftp_config_file_copy_text, gftp_config_file_compare_text, NULL, NULL, NULL,
+   NULL},
   {gftp_config_file_read_textcombo, gftp_config_file_write_text, 
-   gftp_config_file_copy_text, gftp_config_file_compare_text, NULL, NULL, NULL},
+   gftp_config_file_copy_text, gftp_config_file_compare_text, NULL, NULL, NULL,
+   NULL},
   {gftp_config_file_read_text, gftp_config_file_write_text, 
-   gftp_config_file_copy_text, gftp_config_file_compare_text, NULL, NULL, NULL},
+   gftp_config_file_copy_text, gftp_config_file_compare_text, NULL, NULL, NULL,
+   NULL},
   {gftp_config_file_read_text, gftp_config_file_write_hidetext, 
-   gftp_config_file_copy_text, gftp_config_file_compare_text, NULL, NULL, NULL},
+   gftp_config_file_copy_text, gftp_config_file_compare_text, NULL, NULL, NULL,
+   NULL},
   {gftp_config_file_read_int, gftp_config_file_write_int, 
    gftp_config_file_copy_ptr_contents, gftp_config_file_compare_int, 
-   NULL, NULL, NULL},
+   NULL, NULL, NULL, NULL},
   {gftp_config_file_read_checkbox, gftp_config_file_write_int, 
    gftp_config_file_copy_ptr_contents, gftp_config_file_compare_int,
-   NULL, NULL, NULL},
+   NULL, NULL, NULL, NULL},
   {gftp_config_file_read_intcombo, gftp_config_file_write_intcombo, 
    gftp_config_file_copy_ptr_contents, gftp_config_file_compare_int, 
-   NULL, NULL, NULL},
+   NULL, NULL, NULL, NULL},
   {gftp_config_file_read_float, gftp_config_file_write_float, 
    gftp_config_file_copy_ptr_contents, gftp_config_file_compare_float,
-   NULL, NULL, NULL},
+   NULL, NULL, NULL, NULL},
   {gftp_config_file_read_color, gftp_config_file_write_color, 
    gftp_config_file_copy_color, gftp_config_file_compare_color, 
-   NULL, NULL, NULL},
-  {NULL, NULL, NULL, NULL, NULL, NULL},
-  {NULL, NULL, NULL, NULL, NULL, NULL}
+   NULL, NULL, NULL, NULL},
+  {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
+  {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL}
 };