Whamcloud - gitweb
LU-12960 lod: don't set index for 2nd stripe if specific
[fs/lustre-release.git] / lustre / tests / tchmod.c
index 8e59119..e266584 100644 (file)
  *
  * You should have received a copy of the GNU General Public License
  * version 2 along with this program; If not, see
- * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
- *
- * 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.
+ * http://www.gnu.org/licenses/gpl-2.0.html
  *
  * GPL HEADER END
  */
 
 int main(int argc, char **argv)
 {
-        mode_t mode;
+       mode_t mode;
 
-        if (argc != 3) { 
-                printf("usage: %s mode name\n", argv[0]);
-                return 1;
-        }
+       if (argc != 3) {
+               printf("usage: %s mode name\n", argv[0]);
+               return 1;
+       }
 
-        mode = strtoul(argv[1], NULL, 8); 
-        return chmod(argv[2], mode) ? errno : 0;
+       mode = strtoul(argv[1], NULL, 8);
+       return chmod(argv[2], mode) ? errno : 0;
 }