From: Ivana Hutarova Varekova Date: Thu, 21 Nov 2013 17:37:40 +0000 (+0100) Subject: v0.40.rc1 X-Git-Tag: v0.41~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=99f27e68bdc8f5813cf42d764f57484897a0b39f;p=thirdparty%2Flibcgroup.git v0.40.rc1 releasing v0.40.rc1 This is bugfixing release. List of all patches: Ivana Hutarova Varekova (37): fix permissions of logger.sh cgroup_get_cgroup: remove bogus comment fix template function to copy template groups properly documentation: fix cgroup_copy cgroup description config.c: better detect whether template group already is created parse: fix template parsing lex: suppress useless warning message during compilation create_cgroup_from_name_value_pairs can't deal n/v pairs from the same controller cgsnapshot: don't display mountpoints which are not wanted cgclassify: polish usage function cgclassify: unify help output cgclear: polish usage function cgconfig: polish usage function cgclear: unify help output cgconfig: unify the help output cgcreate: polish usage function cgdelete: polish usage function cgdelete: unification of usage function output cgexec: polish usage function cgexec: unify the help output cgget: polish usage function cgset: polish usage function cgsnapshot: polish usage function cgsnapshot: unify help output lscgroup: polish usage function lscgroup: unify help output lssubsys: polish usage function lssubsys: unify help output cgroup_init: stop mntopt parsing if there is a bug in named hierarchy cgroup_copy_with_slash: two typos cgroup_get_current_controller_path: test whether strtok_r returns NULL cgroup_config_create_template_group: fix strncpy limits cgroup_config_create_template_group: test the right variable cgroup_{reload|init}_cached_templates:memory leaks cgroup_create_cgroup: write error on fail cgconfig.conf: enable sign "@" in cgroup name bindings: remove -nostdinc compiler option Libo Chen (8): log.h: add head file cgcreate: add err check cgconfig: add err check cgconfig: fix the excursive processing cgconfig: add parameter check cgconfig: correct freeing default_cgroup cgconfig: add check and nonzero cgconfig: change function usage behavior Peter Schiffer (8): Use cache when reading /etc/passwd file Cgred service won't start if /etc/cgrules.conf is missing Typo in debug message in cgexec.c file Incorrect cast Invalid reallocation of config_table in config_insert_cgroup() Templates letter case is switched Use cache when calling cgroup_change_cgroup_flags() Variable procname leaks Weng Meiling (6): cgsnapshot: fix the print message when use cgsnapshot with -f when we use cgsnapshot with the given controller, the result always displays the last mounted controller which is not specified, so fix it. It's more readable and friendly to use the enum value instead of number. cgclassify: use the error message instead of error number cgred:cgred should start when cgroup is mounted cgcreate: fix the wrong uid/gid set. --- diff --git a/configure.in b/configure.in index 0fdf1f33..103fea9e 100644 --- a/configure.in +++ b/configure.in @@ -15,7 +15,7 @@ AC_PREREQ(2.61) # In following section update all occurences of version, including soname -AC_INIT([libcgroup], 0.40.rc1) +AC_INIT([libcgroup], 0.41.rc1) AM_INIT_AUTOMAKE([foreign dist-bzip2]) m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) @@ -23,7 +23,7 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) # set library version, soname is libcgroup.so.MAJOR AC_SUBST(LIBRARY_VERSION_MAJOR, 1) AC_SUBST(LIBRARY_VERSION_MINOR, 0) -AC_SUBST(LIBRARY_VERSION_RELEASE, 40) +AC_SUBST(LIBRARY_VERSION_RELEASE, 41) # we do not want static libraries AC_DISABLE_STATIC