Quoting S.Çağlar Onur ([email protected]):
> Signed-off-by: S.Çağlar Onur <[email protected]>

Acked-by: Serge E. Hallyn <[email protected]>

> ---
>  src/lxc/lxccontainer.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/src/lxc/lxccontainer.c b/src/lxc/lxccontainer.c
> index 3cabf0d..11e70cb 100644
> --- a/src/lxc/lxccontainer.c
> +++ b/src/lxc/lxccontainer.c
> @@ -2958,9 +2958,9 @@ static bool add_remove_device_node(struct lxc_container 
> *c, char *src_path, char
>               goto out;
>  
>       /* continue if path is character device or block device */
> -     if S_ISCHR(st.st_mode)
> +     if (S_ISCHR(st.st_mode))
>               ret = snprintf(value, MAX_BUFFER, "c %d:%d rwm", 
> major(st.st_rdev), minor(st.st_rdev));
> -     else if S_ISBLK(st.st_mode)
> +     else if (S_ISBLK(st.st_mode))
>               ret = snprintf(value, MAX_BUFFER, "b %d:%d rwm", 
> major(st.st_rdev), minor(st.st_rdev));
>       else
>               goto out;
> -- 
> 1.8.3.2
> 
> 
> ------------------------------------------------------------------------------
> DreamFactory - Open Source REST & JSON Services for HTML5 & Native Apps
> OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
> Free app hosting. Or install the open source package on any LAMP server.
> Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
> http://pubads.g.doubleclick.net/gampad/clk?id=63469471&iu=/4140/ostg.clktrk
> _______________________________________________
> Lxc-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/lxc-devel

------------------------------------------------------------------------------
DreamFactory - Open Source REST & JSON Services for HTML5 & Native Apps
OAuth, Users, Roles, SQL, NoSQL, BLOB Storage and External API Access
Free app hosting. Or install the open source package on any LAMP server.
Sign up and see examples for AngularJS, jQuery, Sencha Touch and Native!
http://pubads.g.doubleclick.net/gampad/clk?id=63469471&iu=/4140/ostg.clktrk
_______________________________________________
Lxc-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/lxc-devel

Reply via email to