Check-in Number:
|
335 | |
Date: |
2001-Jan-19 22:16:25 (local)
2001-Jan-19 21:16:25 (UTC) |
User: | simons |
Branch: | |
Comment: |
Minor change to enhance portability. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/petidomo/mailer.c 1.6 -> 1.7
--- mailer.c 2001/01/19 14:56:33 1.6
+++ mailer.c 2001/01/19 21:16:25 1.7
@@ -1,6 +1,6 @@
/*
$Source: /v/ossp/cvs/ossp-pkg/petidomo/mailer.c,v $
- $Revision: 1.6 $
+ $Revision: 1.7 $
Copyright (C) 2000 by CyberSolutions GmbH, Germany.
@@ -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. */
|
|