]> sourceware.org Git - lvm2.git/blame - tools/stub.h
thin: tighten discard string conversions
[lvm2.git] / tools / stub.h
CommitLineData
269930c0 1/*
6606c3ae 2 * Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
be684599 3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
269930c0 4 *
6606c3ae
AK
5 * This file is part of LVM2.
6 *
7 * This copyrighted material is made available to anyone wishing to use,
8 * modify, copy, or redistribute it subject to the terms and conditions
be684599 9 * of the GNU Lesser General Public License v.2.1.
6606c3ae 10 *
be684599 11 * You should have received a copy of the GNU Lesser General Public License
6606c3ae
AK
12 * along with this program; if not, write to the Free Software Foundation,
13 * Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
269930c0
AK
14 */
15
cb0cc299 16#define unimplemented \
72b2cb61 17 log_error("Command not implemented yet."); return ECMD_FAILED
a7617ea2 18
5a52dca9 19/*int e2fsadm(struct cmd_context *cmd, int argc, char **argv) unimplemented*/
08f1ddea
AK
20int lvmsadc(struct cmd_context *cmd __attribute__((unused)),
21 int argc __attribute__((unused)),
22 char **argv __attribute__((unused)))
72b2cb61
AK
23{
24 unimplemented;
25}
26
08f1ddea
AK
27int lvmsar(struct cmd_context *cmd __attribute__((unused)),
28 int argc __attribute__((unused)),
29 char **argv __attribute__((unused)))
72b2cb61
AK
30{
31 unimplemented;
32}
a7617ea2 33
08f1ddea
AK
34int pvdata(struct cmd_context *cmd __attribute__((unused)),
35 int argc __attribute__((unused)),
36 char **argv __attribute__((unused)))
72b2cb61 37{
a7617ea2
AK
38 log_error("There's no 'pvdata' command in LVM2.");
39 log_error("Use lvs, pvs, vgs instead; or use vgcfgbackup and read the text file backup.");
40 log_error("Metadata in LVM1 format can still be displayed using LVM1's pvdata command.");
41 return ECMD_FAILED;
42}
43
This page took 0.097462 seconds and 5 git commands to generate.