mount: #ifdef out MOUNT_LABEL code parts if it is not selected

This commit is contained in:
Denis Vlasenko 2008-03-18 01:44:52 +00:00
parent 2a7a451391
commit 6aa7696e28

View File

@ -22,8 +22,10 @@
#include <syslog.h> #include <syslog.h>
#include "libbb.h" #include "libbb.h"
#if ENABLE_FEATURE_MOUNT_LABEL
/* For FEATURE_MOUNT_LABEL only */ /* For FEATURE_MOUNT_LABEL only */
#include "volume_id.h" #include "volume_id.h"
#endif
/* Needed for nfs support only */ /* Needed for nfs support only */
#include <sys/utsname.h> #include <sys/utsname.h>
@ -252,10 +254,12 @@ static int resolve_mount_spec(char **fsname)
{ {
char *tmp = NULL; char *tmp = NULL;
#if ENABLE_FEATURE_MOUNT_LABEL
if (!strncmp(*fsname, "UUID=", 5)) if (!strncmp(*fsname, "UUID=", 5))
tmp = get_devname_from_uuid(*fsname + 5); tmp = get_devname_from_uuid(*fsname + 5);
else if (!strncmp(*fsname, "LABEL=", 6)) else if (!strncmp(*fsname, "LABEL=", 6))
tmp = get_devname_from_label(*fsname + 6); tmp = get_devname_from_label(*fsname + 6);
#endif
if (tmp) { if (tmp) {
*fsname = tmp; *fsname = tmp;