Use error_msg instead of fprintf(stderr
authorGlenn L McGrath <bug1@ihug.co.nz>
Thu, 28 Nov 2002 10:35:40 +0000 (10:35 -0000)
committerGlenn L McGrath <bug1@ihug.co.nz>
Thu, 28 Nov 2002 10:35:40 +0000 (10:35 -0000)
libbb/syscalls.c

index 76b77f816b578f7d806a32b479d17d6a8faa06b7..91e97b1784f2f4621b71b8e9caa9e7393b9da22b 100644 (file)
@@ -53,8 +53,8 @@ int pivot_root(const char * new_root,const char * put_old)
         *  you will need to recompile with a kernel supporting the
         *  pivot_root system call.
         */
-       fprintf(stderr, "\n\nTo make this application work, you will need to recompile\n");
-       fprintf(stderr, "with a kernel supporting the pivot_root system call. -Erik\n\n");
+       error_msg("\n\nTo make this application work, you will need to recompile\n"
+               "with a kernel supporting the pivot_root system call. -Erik\n");
        errno=ENOSYS;
        return -1;
 }
@@ -91,8 +91,8 @@ int umount2(const char * special_file, int flags)
         *  you will need to recompile with a kernel supporting the
         *  umount2 system call.
         */
-       fprintf(stderr, "\n\nTo make this application work, you will need to recompile\n");
-       fprintf(stderr, "with a kernel supporting the umount2 system call. -Erik\n\n");
+       error_msg("\n\nTo make this application work, you will need to recompile\n"
+               "with a kernel supporting the umount2 system call. -Erik\n");
        errno=ENOSYS;
        return -1;
 }