aboutsummaryrefslogtreecommitdiff
path: root/coreutils/chroot.c
diff options
context:
space:
mode:
authormarkw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-12-07 19:56:48 +0000
committermarkw <markw@69ca8d6d-28ef-0310-b511-8ec308f3f277>2000-12-07 19:56:48 +0000
commitb529ac16d7308cb6e852b286b42ebe971a32cd3f (patch)
treea55822621d54bd82c54e272fa986e45698fea0f1 /coreutils/chroot.c
parentad3527fc1543422f053975ac4f37365a8585d7c5 (diff)
downloadbusybox-w32-b529ac16d7308cb6e852b286b42ebe971a32cd3f.tar.gz
busybox-w32-b529ac16d7308cb6e852b286b42ebe971a32cd3f.tar.bz2
busybox-w32-b529ac16d7308cb6e852b286b42ebe971a32cd3f.zip
Changed names of functions in utility.c and all affected files, to make
compliant with the style guide. Everybody rebuild your tags file! git-svn-id: svn://busybox.net/trunk/busybox@1398 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/chroot.c')
-rw-r--r--coreutils/chroot.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/chroot.c b/coreutils/chroot.c
index f279af18d..34daf7f25 100644
--- a/coreutils/chroot.c
+++ b/coreutils/chroot.c
@@ -38,7 +38,7 @@ int chroot_main(int argc, char **argv)
38 argv++; 38 argv++;
39 39
40 if (chroot(*argv) || (chdir("/"))) { 40 if (chroot(*argv) || (chdir("/"))) {
41 fatalError("cannot change root directory to %s: %s\n", *argv, strerror(errno)); 41 error_msg_and_die("cannot change root directory to %s: %s\n", *argv, strerror(errno));
42 } 42 }
43 43
44 argc--; 44 argc--;
@@ -57,7 +57,7 @@ int chroot_main(int argc, char **argv)
57 return EXIT_SUCCESS; 57 return EXIT_SUCCESS;
58#endif 58#endif
59 } 59 }
60 fatalError("cannot execute %s: %s\n", prog, strerror(errno)); 60 error_msg_and_die("cannot execute %s: %s\n", prog, strerror(errno));
61 61
62} 62}
63 63