Fix: compilation failure under OpenBSD with IPv6/KAME

This commit is contained in:
form 2000-01-12 18:43:40 +00:00
parent eba8ef7dce
commit 62e86c170d

View File

@ -1,25 +1,24 @@
*** authenticate.c.orig Wed May 13 23:57:39 1998
--- authenticate.c Fri Oct 2 09:44:25 1998
***************
*** 44,50 ****
--- authenticate.c.orig Wed May 13 23:57:39 1998
+++ authenticate.c Thu Jan 13 00:26:51 2000
@@ -22,7 +22,7 @@
#else
#include "config.h"
-#define _XOPEN_SOURCE
+/* #define _XOPEN_SOURCE */
#include <sys/types.h>
#include <unistd.h>
@@ -44,7 +44,7 @@
#define VIRTUALUSER "vpop"
#ifndef MAILSPOOLDIR
! #define MAILSPOOLDIR "/var/spool/mail/" /* watch the trailing / */
-#define MAILSPOOLDIR "/var/spool/mail/" /* watch the trailing / */
+#define MAILSPOOLDIR "/var/mail/" /* watch the trailing / */
#endif
#ifndef MAILSPOOLHASH
#define MAILSPOOLHASH 0 /* 2 would deliver to /var/spool/mail/b/a/bar */
--- 44,50 ----
#define VIRTUALUSER "vpop"
#ifndef MAILSPOOLDIR
! #define MAILSPOOLDIR "/var/mail/" /* watch the trailing / */
#endif
#ifndef MAILSPOOLHASH
#define MAILSPOOLHASH 0 /* 2 would deliver to /var/spool/mail/b/a/bar */
***************
*** 82,87 ****
--- 82,88 ----
@@ -82,6 +82,7 @@
static void getlogname(user,sock)const char*user;const int sock;
{ struct sockaddr_in sockname;int namelen=sizeof sockname;const char*retval="";
@ -27,33 +26,19 @@
if(!getsockname(sock,(struct sockaddr*)&sockname,&namelen))
{ const struct hostent*hent=
gethostbyaddr((void*)&sockname.sin_addr.s_addr,sizeof sockname.sin_addr,
***************
*** 89,104 ****
@@ -89,16 +90,17 @@
if(hent)
retval=hent->h_name;
}
! if(auth_logname= /* memory leak when out of memory */
! realloc(auth_logname,(namelen=strlen(retval))+1+strlen(user)+1))
! { strcpy(auth_logname,retval)[namelen]='/';
- if(auth_logname= /* memory leak when out of memory */
- realloc(auth_logname,(namelen=strlen(retval))+1+strlen(user)+1))
- { strcpy(auth_logname,retval)[namelen]='/';
+ if(p=realloc(auth_logname,(namelen=strlen(retval))+1+strlen(user)+1))
+ { auth_logname=p;
+ strcpy(auth_logname,retval)[namelen]='/';
strcpy(auth_logname+namelen+1,user);
! }
}
static const struct passwd*cgetpwnam(user,sock)const char*user;
const int sock;
{
#ifdef VIRTUALSERVER
DB_ENV dbenv;DB*db;
memset(&dbenv,0,sizeof dbenv);
--- 90,106 ----
if(hent)
retval=hent->h_name;
}
! if(p=realloc(auth_logname,(namelen=strlen(retval))+1+strlen(user)+1))
! { auth_logname=p;
! strcpy(auth_logname,retval)[namelen]='/';
strcpy(auth_logname+namelen+1,user);
! } else { free(auth_logname); auth_logname=NULL; }
- }
+ } else { free(auth_logname); auth_logname=NULL; }
}
static const struct passwd*cgetpwnam(user,sock)const char*user;
@ -63,38 +48,27 @@
#ifdef VIRTUALSERVER
DB_ENV dbenv;DB*db;
memset(&dbenv,0,sizeof dbenv);
***************
*** 129,142 ****
@@ -129,14 +131,18 @@
novirt: strcpy(auth_logname,user);
}
db->close(db,0);
! } /* memory leak when out of memory */
! else if(auth_logname=realloc(auth_logname,strlen(user)+1))
! strcpy(auth_logname,user); /* DB doesn't exist */
- } /* memory leak when out of memory */
- else if(auth_logname=realloc(auth_logname,strlen(user)+1))
- strcpy(auth_logname,user); /* DB doesn't exist */
+ }
+ else if(p=realloc(auth_logname,strlen(user)+1))
+ { auth_logname=p;
+ strcpy(auth_logname,user); /* DB doesn't exist */
+ } else { free(auth_logname); auth_logname=NULL; }
db_appexit(&dbenv);
}
else /* DB subsystem problem */
! { if(auth_logname=realloc(auth_logname,strlen(user)+1))
! strcpy(auth_logname,user);
}
#endif
return getpwnam(user); /* this should be selfexplanatory :-) */
--- 131,148 ----
novirt: strcpy(auth_logname,user);
}
db->close(db,0);
! }
! else if(p=realloc(auth_logname,strlen(user)+1))
! { auth_logname=p;
! strcpy(auth_logname,user); /* DB doesn't exist */
! } else { free(auth_logname); auth_logname=NULL; }
db_appexit(&dbenv);
}
else /* DB subsystem problem */
! { if(p=realloc(auth_logname,strlen(user)+1))
! { auth_logname=p;
! strcpy(auth_logname,user);
! } else { free(auth_logname); auth_logname=NULL; }
- { if(auth_logname=realloc(auth_logname,strlen(user)+1))
- strcpy(auth_logname,user);
+ { if(p=realloc(auth_logname,strlen(user)+1))
+ { auth_logname=p;
+ strcpy(auth_logname,user);
+ } else { free(auth_logname); auth_logname=NULL; }
}
#endif
return getpwnam(user); /* this should be selfexplanatory :-) */