aboutsummaryrefslogtreecommitdiffstats
path: root/group.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--group.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/group.c b/group.c
index de2e2b6..4261d25 100644
--- a/group.c
+++ b/group.c
@@ -16,7 +16,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $Id: group.c,v 1.45 2010/06/28 12:29:04 okan Exp $
+ * $Id: group.c,v 1.46 2010/07/30 12:28:19 okan Exp $
*/
#include <sys/param.h>
@@ -188,11 +188,12 @@ group_make_autogroup(struct conf *conf, char *class, int no)
if ((p = strchr(class, ',')) == NULL) {
aw->name = NULL;
+ aw->class = xstrdup(class);
} else {
*(p++) = '\0';
- aw->name = xstrdup(p);
+ aw->name = xstrdup(class);
+ aw->class = xstrdup(p);
}
- aw->class = xstrdup(class);
aw->num = no;
TAILQ_INSERT_TAIL(&conf->autogroupq, aw, entry);