mirror of
git://git.suckless.org/sbase
synced 2025-01-12 10:29:26 +00:00
Error out on invalid mode in uudecode(1)
This commit is contained in:
parent
df035a6a2c
commit
71461978f2
@ -139,6 +139,8 @@ parsemode(const char *str, mode_t *validmode)
|
||||
if(octal & 00004) *validmode |= S_IROTH;
|
||||
if(octal & 00002) *validmode |= S_IWOTH;
|
||||
if(octal & 00001) *validmode |= S_IXOTH;
|
||||
} else {
|
||||
eprintf("invalid mode\n");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user