freebsd-ports/sysutils/bkpupsd/files/patch-ab
Kirill Ponomarev 9d3619961e - Fix build on all 5-x platforms.
PR:		ports/63416
Submitted by:	Hendrik Scholz <hendrik@scholz.net>
2004-02-27 08:43:36 +00:00

49 lines
1 KiB
Text

--- src/bkpupsd.c.orig Sun Aug 3 13:11:23 1997
+++ src/bkpupsd.c Thu Feb 26 17:17:09 2004
@@ -27,14 +27,17 @@
*/
#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
#include <fcntl.h>
#include <err.h>
#include <errno.h>
+#include <string.h>
#include <sys/types.h>
#include <sys/ioctl.h>
#include <signal.h>
#include <syslog.h>
-#include <varargs.h>
+#include <stdarg.h>
#define POWER_TIMEOUT 5*60
#define DEFAULT_PORT "/dev/cuaa1"
@@ -44,16 +47,16 @@
#define SH_RESTORED "/usr/local/libexec/bkpupsd/bkpups.restored"
#define SH_BATTLOW "/usr/local/libexec/bkpupsd/bkpups.battlow"
+int makepid(char *s);
+
int main(argc, argv)
int argc;
char **argv;
{
int fd;
int lstatus;
- int flags;
int rts_bit = TIOCM_RTS;
int dtr_bit = TIOCM_DTR;
- int rng_bit = TIOCM_RNG;
int pfail = 0;
int pfcount = 0;
int prcount = 0;
@@ -179,7 +182,7 @@
pid = getpid();
if((fp = fopen(s, "w")) == NULL)
return -1;
- fprintf(fp, "%ld\n", pid);
+ fprintf(fp, "%lu\n", (u_long)pid);
fclose(fp);
return 0;
}