blob: 585d259ff782a81c15cfdaf9dbf50f880a2356e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include "fsprobe.h"
#include "devname.h"
#include "sundries.h" /* for xstrdup */
const char *
spec_to_devname(const char *spec)
{
if (!spec)
return NULL;
if (is_pseudo_fs(spec))
return xstrdup(spec);
return fsprobe_get_devname_by_spec(spec);
}
|