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