summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/shell/main_chmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libmisc/shell/main_chmod.c')
-rw-r--r--cpukit/libmisc/shell/main_chmod.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/cpukit/libmisc/shell/main_chmod.c b/cpukit/libmisc/shell/main_chmod.c
index 8b932fac15..9a42cbd940 100644
--- a/cpukit/libmisc/shell/main_chmod.c
+++ b/cpukit/libmisc/shell/main_chmod.c
@@ -1,9 +1,11 @@
+/**
+ * @file
+ *
+ * @brief CHMOD Shell Command Implmentation
+ */
+
/*
- * CHMOD Shell Command Implmentation
- *
- * Author: Fernando RUIZ CASAS
- * Work: fernando.ruiz@ctv.es
- * Home: correo@fernando-ruiz.com
+ * Copyright (c) 2001 Fernando Ruiz Casas <fruizcasas@gmail.com>
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
@@ -54,7 +56,7 @@ static int rtems_shell_main_chmod(
* Now change the files modes
*/
for (n=2 ; n < argc ; n++) {
- sc = chmod(argv[n++], mode);
+ sc = chmod(argv[n], mode);
_Assert_Unused_variable_unequal(sc, -1);
}