1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

libdm: move dm_task_get_info_with_deferred_remove

Version is only needed for dm_task_get_info().
dm_task_get_info_with_deferred_remove() shall be compiled for
non-versioned library as well.
This commit is contained in:
Zdenek Kabelac 2021-04-03 00:01:00 +02:00
parent a8480f0f6e
commit 1398e66a55

View File

@ -2225,6 +2225,8 @@ int dm_task_get_info_base(struct dm_task *dmt, struct dm_info *info)
return 1; return 1;
} }
#endif
int dm_task_get_info_with_deferred_remove(struct dm_task *dmt, struct dm_info *info); int dm_task_get_info_with_deferred_remove(struct dm_task *dmt, struct dm_info *info);
int dm_task_get_info_with_deferred_remove(struct dm_task *dmt, struct dm_info *info) int dm_task_get_info_with_deferred_remove(struct dm_task *dmt, struct dm_info *info)
{ {
@ -2237,4 +2239,3 @@ int dm_task_get_info_with_deferred_remove(struct dm_task *dmt, struct dm_info *i
return 1; return 1;
} }
#endif