- Timestamp:
- Apr 22, 2015, 5:28:59 PM (10 years ago)
- Branches:
- master
- Children:
- 65b48ee
- Parents:
- 176b6ef
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cmd.c
r176b6ef r7ff6405 162 162 163 163 if (strlen(arg) == 0) { 164 icb_error(is, "Invalid group ");164 icb_error(is, "Invalid group name"); 165 165 return; 166 166 } … … 174 174 if (ig == NULL) { 175 175 if (!creategroups) { 176 icb_error(is, " Invalid group");176 icb_error(is, "Can't create new groups"); 177 177 return; 178 178 } else { 179 179 if ((ig = icb_addgroup(is, group)) == NULL) { 180 icb_error(is, "Can't create group ");180 icb_error(is, "Can't create group %s", group); 181 181 return; 182 182 }
Note:
See TracChangeset
for help on using the changeset viewer.