daemon: Don't need to prefix error messages with the command name.
[libguestfs.git] / daemon / dd.c
index 0a53b31..d92dac0 100644 (file)
@@ -62,7 +62,7 @@ do_dd (const char *src, const char *dest)
   free (of_arg);
 
   if (r == -1) {
-    reply_with_error ("dd: %s: %s: %s", src, dest, err);
+    reply_with_error ("%s: %s: %s", src, dest, err);
     free (err);
     return -1;
   }