merge with 0.30.213
[util-vserver.git] / lib / personalityflag_list.c
1 // $Id: personalityflag_list.c 2055 2005-04-28 17:51:43Z ensc $    --*- c -*--
2
3 // Copyright (C) 2005 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 //  
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; version 2 of the License.
8 //  
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //  
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18
19 #ifdef HAVE_CONFIG_H
20 #  include <config.h>
21 #endif
22
23 #ifdef HAVE_CONFIG_H
24 #  include <config.h>
25 #endif
26
27 #include "vserver.h"
28 #include "internal.h"
29
30
31 static uint_least32_t
32 text2personalityflag_err(char const *str,
33                             size_t len, bool *failed)
34 {
35   uint_least32_t                res = vc_text2personalityflag(str, len);
36   if (res==0) *failed = true;
37   return res;
38 }
39
40 int
41 vc_list2personalityflag(char const *str, size_t len,
42                         uint_least32_t *personality,
43                         struct vc_err_listparser *err)
44 {
45   return utilvserver_listparser_uint32(str, len,
46                                        err ? &err->ptr : 0,
47                                        err ? &err->len : 0,
48                                        personality, 0,
49                                        text2personalityflag_err);
50 }