Lines Matching refs:conv
82 struct ftpconv *conv, *cnext; in init_curclass() local
84 for (conv = curclass.conversions; conv != NULL; conv = cnext) { in init_curclass()
85 REASSIGN(conv->suffix, NULL); in init_curclass()
86 REASSIGN(conv->types, NULL); in init_curclass()
87 REASSIGN(conv->disable, NULL); in init_curclass()
88 REASSIGN(conv->command, NULL); in init_curclass()
89 cnext = conv->next; in init_curclass()
90 free(conv); in init_curclass()
147 struct ftpconv *conv, *cnext; in parse_conf() local
319 for (conv = curclass.conversions; conv != NULL; in parse_conf()
320 conv = conv->next) { in parse_conf()
321 if (strcmp(conv->suffix, suffix) == 0) in parse_conf()
324 if (conv == NULL) { in parse_conf()
325 conv = (struct ftpconv *) in parse_conf()
327 if (conv == NULL) { in parse_conf()
331 conv->next = NULL; in parse_conf()
337 cnext->next = conv; in parse_conf()
339 curclass.conversions = conv; in parse_conf()
341 REASSIGN(conv->suffix, suffix); in parse_conf()
342 REASSIGN(conv->types, types); in parse_conf()
343 REASSIGN(conv->disable, disable); in parse_conf()
344 REASSIGN(conv->command, convcmd); in parse_conf()