From: Enrico Scholz Date: Thu, 11 Mar 2004 04:39:38 +0000 (+0000) Subject: Evc_set_vhi_name(): added X-Git-Tag: VERSION_0_10~368 X-Git-Url: http://git.linux-vserver.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f8ed850e23bd9cb373890ea779dafa1f3ff599e6;p=util-vserver.git Evc_set_vhi_name(): added git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@1206 94cd875c-1c1d-0410-91d2-eb244daf1a30 --- diff --git a/util-vserver/ensc_wrappers/wrappers-vserver.hc b/util-vserver/ensc_wrappers/wrappers-vserver.hc index 12178d2..61c9df1 100644 --- a/util-vserver/ensc_wrappers/wrappers-vserver.hc +++ b/util-vserver/ensc_wrappers/wrappers-vserver.hc @@ -63,3 +63,10 @@ Evc_set_flags(xid_t xid, struct vc_ctx_flags const *flags) { FatalErrnoError(vc_set_flags(xid, flags)==-1, "vc_set_flags()"); } + +inline static WRAPPER_DECL void +Evc_set_vhi_name(xid_t xid, vc_uts_type type, + char const *val, size_t len) +{ + FatalErrnoError(vc_set_vhi_name(xid,type,val,len)==-1, "vc_set_vhi_name()"); +}