X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=lustre%2Ftests%2Fmunlink.c;h=80778a783eac2acecd2dd3c945206c38150ea529;hp=38a411bf8565f7264e04aa7bc52dc8271a471ebe;hb=refs%2Fchanges%2F12%2F35912%2F2;hpb=70e80ade90af09300396706b8910e196a7928520 diff --git a/lustre/tests/munlink.c b/lustre/tests/munlink.c old mode 100755 new mode 100644 index 38a411b..80778a7 --- a/lustre/tests/munlink.c +++ b/lustre/tests/munlink.c @@ -1,6 +1,4 @@ -/* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*- - * vim:expandtab:shiftwidth=8:tabstop=8: - * +/* * GPL HEADER START * * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. @@ -16,17 +14,13 @@ * in the LICENSE file that accompanied this code). * * You should have received a copy of the GNU General Public License - * version 2 along with this program; If not, see [sun.com URL with a - * copy of GPLv2]. - * - * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, - * CA 95054 USA or visit www.sun.com if you need additional information or - * have any questions. + * version 2 along with this program; If not, see + * http://www.gnu.org/licenses/gpl-2.0.html * * GPL HEADER END */ /* - * Copyright 2008 Sun Microsystems, Inc. All rights reserved + * Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved. * Use is subject to license terms. */ /* @@ -42,27 +36,27 @@ #include #include -int main(int argc, char ** argv) +int main(int argc, char **argv) { - int rc = 0, i; + int rc = 0, i; - if (argc < 2) { - printf("Usage %s filename {filename ...}\n", argv[0]); - return 1; - } + if (argc < 2) { + printf("Usage %s filename {filename ...}\n", argv[0]); + return 1; + } - for (i = 1; i < argc; i++) { - rc = unlink(argv[i]); - if (rc) { - printf("unlink(%s): %s ", argv[i], strerror(errno)); - rc = access(argv[i], F_OK); - if (rc && errno == ENOENT) - printf("(unlinked anyways)\n"); - else if (rc == 0) - printf("(still exists)\n"); - else - printf("(%s looking up)\n", strerror(errno)); - } - } - return rc; + for (i = 1; i < argc; i++) { + rc = unlink(argv[i]); + if (rc) { + printf("unlink(%s): %s ", argv[i], strerror(errno)); + rc = access(argv[i], F_OK); + if (rc && errno == ENOENT) + printf("(unlinked anyways)\n"); + else if (rc == 0) + printf("(still exists)\n"); + else + printf("(%s looking up)\n", strerror(errno)); + } + } + return rc; }