- the archivers expect mode to be a mode_t, so do not trip signed/unsigned conversion purposefully
This commit is contained in:
@@ -51,7 +51,7 @@ static const char type_chars[16] = "?pc?d?b?-?l?s???";
|
||||
/* 0123456789abcdef */
|
||||
static const char mode_chars[7] = "rwxSTst";
|
||||
|
||||
const char *bb_mode_string(int mode)
|
||||
const char *bb_mode_string(mode_t mode)
|
||||
{
|
||||
static char buf[12];
|
||||
char *p = buf;
|
||||
@@ -91,7 +91,7 @@ static const char type_chars[16] = "?pc?d?b?-?l?s???";
|
||||
/* 0123456789abcdef */
|
||||
static const char mode_chars[7] = "rwxSTst";
|
||||
|
||||
const char *bb_mode_string(int mode)
|
||||
const char *bb_mode_string(mode_t mode)
|
||||
{
|
||||
static char buf[12];
|
||||
char *p = buf;
|
||||
|
Reference in New Issue
Block a user