dev-setup.c revision 696fee7d95194948f7f6a17eab93213b925a846d
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2010-2012 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <unistd.h>
#include "dev-setup.h"
#include "log.h"
#include "macro.h"
#include "util.h"
#include "label.h"
int r;
if (r < 0)
return r;
r = -errno;
return r;
}
const char *j, *k;
static const char symlinks[] =
NULSTR_FOREACH_PAIR(j, k, symlinks) {
if (j[0] == '-') {
j++;
continue;
}
if (prefix) {
char *linkname;
log_oom();
break;
}
} else
symlink_and_label(j, k);
}
}