diff --git a/ChangeLog b/ChangeLog index 770db99..0426491 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Version NEXT + removed test for size of penis in configure.ac + corrected misleading comment in client/lib.c + Version 2.8.1b24 - 19 Feb 2005 use getopt from stdio.h instead of getopt.h in fspscan.c fspscan now compiles on AIX and other OS without glibc (hoaxter) diff --git a/SConstruct b/SConstruct index d7e724b..f6f3f57 100644 --- a/SConstruct +++ b/SConstruct @@ -5,7 +5,7 @@ import os EnsureSConsVersion(0,96) PREFIX='/usr/local' PACKAGE='fsp' -VERSION='2.8.1b24' +VERSION='2.8.1b25' env = Environment(CPPPATH='#/include') # Turn CPPFLAGS to list diff --git a/client/lib.c b/client/lib.c index c8c470d..c1ec4b0 100644 --- a/client/lib.c +++ b/client/lib.c @@ -206,7 +206,7 @@ UBUF *client_interact (unsigned char cmd, unsigned long pos, cmd == CC_GET_FILE || cmd == CC_UP_LOAD || cmd == CC_INFO || cmd == CC_GRAB_FILE)) { - /* wrong seq # */ + /* wrong pos */ if (client_trace) write(2,"P",1); stat_bad++; continue; diff --git a/configure.ac b/configure.ac index 83cfa65..a439e77 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ dnl Process this file with autoconf to produce a working configure script. dnl tested with autoconf 2.57 -AC_INIT(fsp,2.8.1b24,hsn@netmag.cz) +AC_INIT(fsp,2.8.1b25,hsn@netmag.cz) AC_CONFIG_SRCDIR(server/main.c) AM_INIT_AUTOMAKE([dist-bzip2]) AM_MAINTAINER_MODE @@ -98,7 +98,6 @@ AC_CHECK_HEADERS(string.h strings.h unistd.h sys/resource.h utime.h) AC_HEADER_DIRENT AC_HEADER_TIME AC_CHECK_SIZEOF(unsigned) -AC_CHECK_SIZEOF(penis) AC_CHECK_SIZEOF(short) AC_CHECK_SIZEOF(long) AC_CHECK_SIZEOF(char)