sbase/chroot.c
sin 4b30e39348 Fix warning in chroot(1)
chroot.c:12:2: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
  if(aux = getenv("SHELL"))
  ^
2013-10-06 20:35:30 +01:00

39 lines
558 B
C

#include <stdlib.h>
#include <unistd.h>
#include "util.h"
static void usage(void);
int
main(int argc, char **argv)
{
char *shell[] = {"/bin/sh", "-i", NULL}, *aux;
if((aux = getenv("SHELL")))
shell[0] = aux;
if(argc < 2)
usage();
if(chroot(argv[1]) == -1)
eprintf("chroot: '%s':", argv[1]);
if(chdir("/") == -1)
eprintf("chroot:");
if(argc == 2) {
execvp(*shell, shell);
} else {
execvp(argv[2], argv+2);
}
eprintf("chroot: '%s':", argv[2]);
return 1;
}
void
usage(void)
{
eprintf("usage: chroot dir [command [arg...]]\n");
}