summaryrefslogtreecommitdiff
path: root/removable-media.pl.in
diff options
context:
space:
mode:
authorhansp <hansp>2001-03-13 01:27:21 +0000
committerhansp <hansp>2001-03-13 01:27:21 +0000
commit60922205c3d7d43f12d315ba3362ef8810c851c8 (patch)
tree66ba2d162bcee354a7dd813ec5794bbf10514139 /removable-media.pl.in
parentd5752f6228d6c8e83d1431d688f54c086d2f18f0 (diff)
2001-03-12 Hans Petter Jansson <hpj@ximian.com>
* xml.pl.in (xst_xml_indent): -> xst_xml_print_indent. (xst_xml_vspace): -> xst_xml_print_vspace. (xst_xml_print_string): Implement. (xst_xml_print_line): Use xst_xml_print_string(). * boot-conf.in disks-conf.in hardware-conf.in media.pl.in memory-conf.in network-conf.in removable-media.pl.in time-conf.in users-conf.in: xst_xml_indent -> xst_xml_print_indent. xst_xml_vspace -> xst_xml_print_vspace.
Diffstat (limited to 'removable-media.pl.in')
-rw-r--r--removable-media.pl.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/removable-media.pl.in b/removable-media.pl.in
index 47604df..34a754e 100644
--- a/removable-media.pl.in
+++ b/removable-media.pl.in
@@ -49,7 +49,7 @@ sub xst_removable_media_get_list
sub xst_removable_media_xml_print
{
- &xst_xml_vspace ();
+ &xst_xml_print_vspace ();
&xst_xml_print_line ("<removables>\n");
&xst_xml_enter ();
@@ -57,5 +57,5 @@ sub xst_removable_media_xml_print
&xst_xml_leave ();
&xst_xml_print_line ("</removables>\n");
- &xst_xml_vspace ();
+ &xst_xml_print_vspace ();
}