aboutsummaryrefslogtreecommitdiff
path: root/libbb
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-22 17:48:08 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-01-22 17:48:08 +0000
commit25807f170879cb04cec6d335f25e2d39c378c9d6 (patch)
tree83402a2c66b72e62e38c650f29d4b2d6399c3de2 /libbb
parent1ba94b3df165a7888b233c1fd210e8dd00775ef8 (diff)
downloadbusybox-w32-25807f170879cb04cec6d335f25e2d39c378c9d6.tar.gz
busybox-w32-25807f170879cb04cec6d335f25e2d39c378c9d6.tar.bz2
busybox-w32-25807f170879cb04cec6d335f25e2d39c378c9d6.zip
- the archivers expect mode to be a mode_t, so do not trip signed/unsigned conversion purposefully
git-svn-id: svn://busybox.net/trunk/busybox@17467 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb')
-rw-r--r--libbb/mode_string.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/mode_string.c b/libbb/mode_string.c
index 01029bfee..d3ff18375 100644
--- a/libbb/mode_string.c
+++ b/libbb/mode_string.c
@@ -51,7 +51,7 @@ static const char type_chars[16] = "?pc?d?b?-?l?s???";
51/* 0123456789abcdef */ 51/* 0123456789abcdef */
52static const char mode_chars[7] = "rwxSTst"; 52static const char mode_chars[7] = "rwxSTst";
53 53
54const char *bb_mode_string(int mode) 54const char *bb_mode_string(mode_t mode)
55{ 55{
56 static char buf[12]; 56 static char buf[12];
57 char *p = buf; 57 char *p = buf;
@@ -91,7 +91,7 @@ static const char type_chars[16] = "?pc?d?b?-?l?s???";
91/* 0123456789abcdef */ 91/* 0123456789abcdef */
92static const char mode_chars[7] = "rwxSTst"; 92static const char mode_chars[7] = "rwxSTst";
93 93
94const char *bb_mode_string(int mode) 94const char *bb_mode_string(mode_t mode)
95{ 95{
96 static char buf[12]; 96 static char buf[12];
97 char *p = buf; 97 char *p = buf;