Index: ossp-pkg/petidomo/mailer.c RCS File: /v/ossp/cvs/ossp-pkg/petidomo/mailer.c,v rcsdiff -q -kk '-r1.6' '-r1.7' -u '/v/ossp/cvs/ossp-pkg/petidomo/mailer.c,v' 2>/dev/null --- mailer.c 2001/01/19 14:56:33 1.6 +++ mailer.c 2001/01/19 21:16:25 1.7 @@ -130,7 +130,7 @@ static int my_strlen(const char * p) { - u_int i; + unsigned int i; for (i = 0; *p && !isspace((int)*p); p++) i++; return i; @@ -144,20 +144,20 @@ { const struct PD_Config * MasterConfig = getMasterConfig(); const struct List_Config * ListConfig = getListConfig(listname); - char ** arguments; - u_int arguments_num = 256; - char buffer[256]; - char * listfile; - char * nextAddress; - char * currAddress; - char * p; - u_int counter; - u_int len; - u_int address_byte; - u_int max_address_byte; - int fildes[2]; - pid_t child_pid; - int child_status; + char ** arguments; + unsigned int arguments_num = 256; + char buffer[256]; + char * listfile; + char * nextAddress; + char * currAddress; + char * p; + unsigned int counter; + unsigned int len; + unsigned int address_byte; + unsigned int max_address_byte; + int fildes[2]; + pid_t child_pid; + int child_status; /* Initialize internal stuff. */