Home | History | Annotate | Download | only in ftpd

Lines Matching defs:conv

82 	struct ftpconv	*conv, *cnext;
84 for (conv = curclass.conversions; conv != NULL; conv = cnext) {
85 REASSIGN(conv->suffix, NULL);
86 REASSIGN(conv->types, NULL);
87 REASSIGN(conv->disable, NULL);
88 REASSIGN(conv->command, NULL);
89 cnext = conv->next;
90 free(conv);
147 struct ftpconv *conv, *cnext;
319 for (conv = curclass.conversions; conv != NULL;
320 conv = conv->next) {
321 if (strcmp(conv->suffix, suffix) == 0)
324 if (conv == NULL) {
325 conv = (struct ftpconv *)
327 if (conv == NULL) {
331 conv->next = NULL;
337 cnext->next = conv;
339 curclass.conversions = conv;
341 REASSIGN(conv->suffix, suffix);
342 REASSIGN(conv->types, types);
343 REASSIGN(conv->disable, disable);
344 REASSIGN(conv->command, convcmd);
824 "cp->suffix==NULL in conv list; SHOULDN'T HAPPEN!");