aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-03 21:00:43 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-10-03 21:00:43 +0000
commitd8cf793135eac928e653eb5178894a611aa27837 (patch)
tree8c555cc94aca9fabd177526e554d93bed4886642 /coreutils
parent63adc7384791548741e3a2afbee1be40d99fe9d2 (diff)
downloadbusybox-w32-d8cf793135eac928e653eb5178894a611aa27837.tar.gz
busybox-w32-d8cf793135eac928e653eb5178894a611aa27837.tar.bz2
busybox-w32-d8cf793135eac928e653eb5178894a611aa27837.zip
bb_applet_name -> applet_name
git-svn-id: svn://busybox.net/trunk/busybox@16306 69ca8d6d-28ef-0310-b511-8ec308f3f277
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 */