Evc_set_vhi_name(): added
authorEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Thu, 11 Mar 2004 04:39:38 +0000 (04:39 +0000)
committerEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Thu, 11 Mar 2004 04:39:38 +0000 (04:39 +0000)
git-svn-id: http://svn.linux-vserver.org/svn/util-vserver/trunk@1206 94cd875c-1c1d-0410-91d2-eb244daf1a30

util-vserver/ensc_wrappers/wrappers-vserver.hc

index 12178d2..61c9df1 100644 (file)
@@ -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()");
+}