now code compiles cleanly on i386 too

This commit is contained in:
snar
2013-05-09 13:41:35 +00:00
parent 37730a6b43
commit e5a2745b39
2 changed files with 9 additions and 6 deletions

View File

@@ -1,12 +1,12 @@
Name: bgpq3
Version: 0.1.18
Release: 3%{?dist}
Version: 0.1.19
Release: 0%{?dist}
Group: System/Utilities
Summary: Automate BGP filter generation based on routing database information
URL: http://snar.spb.ru/prog/bgpq3/
License: BSD
Source0: http://snar.spb.ru/prog/bgpq3/bgpq3-0.1.18.tgz
Source0: http://snar.spb.ru/prog/bgpq3/bgpq3-0.1.19.tgz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
%description
@@ -35,6 +35,9 @@ rm -rf $RPM_BUILD_ROOT
%changelog
* Thu May 9 2013 Alexandre Snarskii <snar@snar.spb.ru> 0.1.19-0.snar
- Version updated
* Sun Feb 24 2013 Alexandre Snarskii <snar@snar.spb.ru> 0.1.18-3.snar
- License corrected

View File

@@ -354,7 +354,7 @@ bgpq_pipeline(FILE* f, int (*callback)(char*, void*), void* udata,
bp=malloc(sizeof(struct bgpq_prequest));
if(!bp) {
sx_report(SX_FATAL,"Unable to allocate %lu bytes: %s\n",
sizeof(struct bgpq_prequest),strerror(errno));
(unsigned long)sizeof(struct bgpq_prequest),strerror(errno));
exit(1);
};
memset(bp,0,sizeof(struct bgpq_prequest));
@@ -495,7 +495,7 @@ bgpq_expand_radb(FILE* f, int (*callback)(char*, void*), void* udata,
exit(1);
};
SX_DEBUG(debug_expander>2,"expander: initially got %lu bytes, '%s'\n",
strlen(request),request);
(unsigned long)strlen(request),request);
if(request[0]=='A') {
char* eon, *c;
long togot=strtoul(request+1,&eon,10);
@@ -517,7 +517,7 @@ bgpq_expand_radb(FILE* f, int (*callback)(char*, void*), void* udata,
exit(1);
};
SX_DEBUG(debug_expander>2,"expander: final reply of %lu bytes, '%s'\n",
strlen(recvbuffer),recvbuffer);
(unsigned long)strlen(recvbuffer),recvbuffer);
for(c=recvbuffer; c<recvbuffer+togot;) {
size_t spn=strcspn(c," \n");