aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/cut.c1
-rw-r--r--coreutils/dos2unix.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/coreutils/cut.c b/coreutils/cut.c
index 30dbc02db..69f28fa8d 100644
--- a/coreutils/cut.c
+++ b/coreutils/cut.c
@@ -13,6 +13,7 @@
13 13
14/* option vars */ 14/* option vars */
15static const char optstring[] = "b:c:f:d:sn"; 15static const char optstring[] = "b:c:f:d:sn";
16
16#define CUT_OPT_BYTE_FLGS (1<<0) 17#define CUT_OPT_BYTE_FLGS (1<<0)
17#define CUT_OPT_CHAR_FLGS (1<<1) 18#define CUT_OPT_CHAR_FLGS (1<<1)
18#define CUT_OPT_FIELDS_FLGS (1<<2) 19#define CUT_OPT_FIELDS_FLGS (1<<2)
diff --git a/coreutils/dos2unix.c b/coreutils/dos2unix.c
index a8038a6dd..1ed8771c0 100644
--- a/coreutils/dos2unix.c
+++ b/coreutils/dos2unix.c
@@ -87,7 +87,7 @@ int dos2unix_main(int argc, char *argv[])
87 int o; 87 int o;
88 88
89 /* See if we are supposed to be doing dos2unix or unix2dos */ 89 /* See if we are supposed to be doing dos2unix or unix2dos */
90 if (bb_applet_name[0] == 'd') { 90 if (applet_name[0] == 'd') {
91 ConvType = CT_DOS2UNIX; /*2 */ 91 ConvType = CT_DOS2UNIX; /*2 */
92 } else { 92 } else {
93 ConvType = CT_UNIX2DOS; /*1 */ 93 ConvType = CT_UNIX2DOS; /*1 */