mirror of
https://git.freebsd.org/ports.git
synced 2025-06-13 00:30:33 -04:00
- Bump portrevision PR: ports/121097 Submitted by: Alexander Chernikov <melifaro@bol.megaon.ru>
23 lines
1,010 B
C
23 lines
1,010 B
C
diff -urN src/p_global.h psybnc.new/src/p_global.h
|
|
--- src/p_global.h 2005-06-04 22:22:45.000000000 +0400
|
|
+++ src/p_global.h 2008-02-25 23:36:21.000000000 +0300
|
|
@@ -972,7 +972,7 @@
|
|
#endif
|
|
|
|
#ifndef P_MEMORY
|
|
-unsigned long *__pmalloc(unsigned long size,char *module,char *function,int line);
|
|
+char *__pmalloc(unsigned long size,char *module,char *function,int line);
|
|
void _pfree(void * pointer,char *module, char *function, int line);
|
|
struct usert *user(int usern);
|
|
struct newpeert *newpeer(int usern);
|
|
@@ -1267,8 +1267,8 @@
|
|
|
|
#endif
|
|
|
|
-#define pcontext { strmncpy(ctxt,__FILE__,sizeof(ctxt)); strmncpy(cfunc,__FUNCTION__,sizeof(cfunc)); cline=__LINE__; }
|
|
-#define pmalloc(n) __pmalloc((n),__FILE__,__FUNCTION__,__LINE__)
|
|
+#define pcontext { strmncpy(ctxt,__FILE__,sizeof(ctxt)); strmncpy(cfunc,(char*)__FUNCTION__,sizeof(cfunc)); cline=__LINE__; }
|
|
+#define pmalloc(n) __pmalloc((n),__FILE__,(char*)__FUNCTION__,(int)__LINE__)
|
|
|
|
#define SSLCERT "key/psybnc.cert.pem"
|
|
#define SSLKEY "key/psybnc.key.pem"
|