📄 become.c
字号:
#include "common.h"#include <auth.h>#include <ndb.h>/* * become powerless user */intbecome(char **cmd, char *who){ int fd; USED(cmd); if(strcmp(who, "none") == 0) { fd = open("#c/user", OWRITE); if(fd < 0 || write(fd, "none", strlen("none")) < 0) { werrstr("can't become none"); return -1; } close(fd); if(newns("none", 0)) { werrstr("can't set new namespace"); return -1; } } return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -