Re: patch to applet-dialogs

2008-06-06 Thread Dan Williams
On Tue, 2008-06-03 at 11:52 -0400, Miner, Jonathan W (US SSA) wrote:
 If the default gateway is not explicitly set, then it currently is displayed 
 as 0.0.0.0 in the Connection Information box. This patch disables the 
 display of the Default Route tag if it isn't set.

applet r746, thanks!

Dan

 --- src/applet-dialogs.c.orig 2008-06-02 08:28:05.0 -0400
 +++ src/applet-dialogs.c  2008-06-03 11:47:59.0 -0400
 @@ -367,13 +367,15 @@
   row++;
  
   /* Gateway */
 - gtk_table_attach_defaults (table,
 + if ( def_addr-gateway != 0 ) {
 + gtk_table_attach_defaults (table,
  create_info_label 
 (_(Default Route:)),
  0, 1, row, row + 1);
 - gtk_table_attach_defaults (table,
 + gtk_table_attach_defaults (table,
  create_info_label 
 (ip4_address_as_string (def_addr-gateway)),
  1, 2, row, row + 1);
 - row++;
 + row++;
 + }
  
   /* DNS */
   dns = nm_ip4_config_get_nameservers (ip4_config);
 
 ___
 NetworkManager-list mailing list
 NetworkManager-list@gnome.org
 http://mail.gnome.org/mailman/listinfo/networkmanager-list

___
NetworkManager-list mailing list
NetworkManager-list@gnome.org
http://mail.gnome.org/mailman/listinfo/networkmanager-list


patch to applet-dialogs

2008-06-03 Thread Miner, Jonathan W (US SSA)
If the default gateway is not explicitly set, then it currently is displayed as 
0.0.0.0 in the Connection Information box. This patch disables the display 
of the Default Route tag if it isn't set.

--- src/applet-dialogs.c.orig   2008-06-02 08:28:05.0 -0400
+++ src/applet-dialogs.c2008-06-03 11:47:59.0 -0400
@@ -367,13 +367,15 @@
row++;
 
/* Gateway */
-   gtk_table_attach_defaults (table,
+   if ( def_addr-gateway != 0 ) {
+   gtk_table_attach_defaults (table,
   create_info_label 
(_(Default Route:)),
   0, 1, row, row + 1);
-   gtk_table_attach_defaults (table,
+   gtk_table_attach_defaults (table,
   create_info_label 
(ip4_address_as_string (def_addr-gateway)),
   1, 2, row, row + 1);
-   row++;
+   row++;
+   }
 
/* DNS */
dns = nm_ip4_config_get_nameservers (ip4_config);

___
NetworkManager-list mailing list
NetworkManager-list@gnome.org
http://mail.gnome.org/mailman/listinfo/networkmanager-list