summaryrefslogtreecommitdiff
path: root/libstore/std.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2001-12-23 07:34:51 +0000
committerRoland McGrath <roland@gnu.org>2001-12-23 07:34:51 +0000
commit6369617c93f57ee8707d0294aeb2c980ee816416 (patch)
treea5e63231ae5592812e8f71d6901b4c89df01c6e7 /libstore/std.c
parent00c98cb10468874aa9ccaba79c47f89f46dc51e4 (diff)
2001-10-14 Roland McGrath <roland@frob.com>
* url.c: New file. (store_url_open): New function. (store_url_open_class): New const variable. * store.h: Declare them. * std.c (store_std_classes): Add &store_url_open_class to the list, move &store_nbd_class after it.
Diffstat (limited to 'libstore/std.c')
-rw-r--r--libstore/std.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/libstore/std.c b/libstore/std.c
index 4f82c380..90ddecd1 100644
--- a/libstore/std.c
+++ b/libstore/std.c
@@ -30,10 +30,15 @@ store_std_classes[] =
&store_file_class,
&store_zero_class,
&store_task_class,
- &store_nbd_class,
&store_ileave_class, &store_concat_class, &store_remap_class,
&store_query_class,
&store_copy_class, &store_gunzip_class, &store_bunzip2_class,
+
+ /* This pseudo-class must appear before any real STORAGE_NETWORK class,
+ to parse STORAGE_NETWORK file_get_storage_info results properly. */
+ &store_url_open_class,
+ &store_nbd_class,
+
&store_typed_open_class,
0
};