rpc_server: change unsupported pipe error
[samba.git] / source3 / rpc_server / srv_pipe_hnd.c
index a05fafd4b070c34c2d206dfc7ec51921fb7d68b5..63a5fcdfa9230838faf37fd724d509e9e63c7dd6 100644 (file)
@@ -98,11 +98,10 @@ NTSTATUS np_open(TALLOC_CTX *mem_ctx, const char *name,
 
                break;
        case RPC_SERVICE_MODE_EMBEDDED:
-               /* Check if we this daemon handles this pipe */
+               /* Check if we handle this pipe internally */
                ok = is_known_pipename(name, &syntax);
                if (!ok) {
-                       DEBUG(0, ("ERROR! '%s' is not a registred pipe!\n",
-                                 name));
+                       DEBUG(2, ("'%s' is not a registered pipe!\n", name));
                        talloc_free(handle);
                        return NT_STATUS_OBJECT_NAME_NOT_FOUND;
                }