aboutsummaryrefslogtreecommitdiff
path: root/libbb/syscalls.c
diff options
context:
space:
mode:
authormjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-03-19 09:13:01 +0000
committermjn3 <mjn3@69ca8d6d-28ef-0310-b511-8ec308f3f277>2003-03-19 09:13:01 +0000
commite901c15d890dbbdce4c086963cb1513653fc46b5 (patch)
treea318d0f03aa076c74b576ea45dc543a5669e8e91 /libbb/syscalls.c
parent40758c00616c3b2c85d83eb4afdeb04b1f65c9f1 (diff)
downloadbusybox-w32-e901c15d890dbbdce4c086963cb1513653fc46b5.tar.gz
busybox-w32-e901c15d890dbbdce4c086963cb1513653fc46b5.tar.bz2
busybox-w32-e901c15d890dbbdce4c086963cb1513653fc46b5.zip
Major coreutils update.
git-svn-id: svn://busybox.net/trunk/busybox@6751 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'libbb/syscalls.c')
-rw-r--r--libbb/syscalls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libbb/syscalls.c b/libbb/syscalls.c
index 91e97b178..8d8c689f1 100644
--- a/libbb/syscalls.c
+++ b/libbb/syscalls.c
@@ -53,7 +53,7 @@ int pivot_root(const char * new_root,const char * put_old)
53 * you will need to recompile with a kernel supporting the 53 * you will need to recompile with a kernel supporting the
54 * pivot_root system call. 54 * pivot_root system call.
55 */ 55 */
56 error_msg("\n\nTo make this application work, you will need to recompile\n" 56 bb_error_msg("\n\nTo make this application work, you will need to recompile\n"
57 "with a kernel supporting the pivot_root system call. -Erik\n"); 57 "with a kernel supporting the pivot_root system call. -Erik\n");
58 errno=ENOSYS; 58 errno=ENOSYS;
59 return -1; 59 return -1;
@@ -91,7 +91,7 @@ int umount2(const char * special_file, int flags)
91 * you will need to recompile with a kernel supporting the 91 * you will need to recompile with a kernel supporting the
92 * umount2 system call. 92 * umount2 system call.
93 */ 93 */
94 error_msg("\n\nTo make this application work, you will need to recompile\n" 94 bb_error_msg("\n\nTo make this application work, you will need to recompile\n"
95 "with a kernel supporting the umount2 system call. -Erik\n"); 95 "with a kernel supporting the umount2 system call. -Erik\n");
96 errno=ENOSYS; 96 errno=ENOSYS;
97 return -1; 97 return -1;