From 4cf93bce37b9bf8f52a4fd4185e1eb2e781d801e Mon Sep 17 00:00:00 2001 From: Bryan Ischo Date: Thu, 12 Feb 2009 08:45:13 +1300 Subject: * Updated version numbers for branch after incorporating master changes --- GNUmakefile | 4 ++-- GNUmakefile.mingw | 4 ++-- archlinux/PKGBUILD | 2 +- doxyfile | 2 +- libs3.spec | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 82a851c..eb16954 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -38,8 +38,8 @@ # -------------------------------------------------------------------------- # Set libs3 version number -LIBS3_VER_MAJOR := trunk0 -LIBS3_VER_MINOR := trunk0 +LIBS3_VER_MAJOR := 1 +LIBS3_VER_MINOR := 4 LIBS3_VER := $(LIBS3_VER_MAJOR).$(LIBS3_VER_MINOR) diff --git a/GNUmakefile.mingw b/GNUmakefile.mingw index 7d3f830..aab4f02 100644 --- a/GNUmakefile.mingw +++ b/GNUmakefile.mingw @@ -38,8 +38,8 @@ # -------------------------------------------------------------------------- # Set libs3 version number -LIBS3_VER_MAJOR := trunk0 -LIBS3_VER_MINOR := trunk0 +LIBS3_VER_MAJOR := 1 +LIBS3_VER_MINOR := 4 LIBS3_VER := $(LIBS3_VER_MAJOR).$(LIBS3_VER_MINOR) diff --git a/archlinux/PKGBUILD b/archlinux/PKGBUILD index 61a1fa9..801bda1 100644 --- a/archlinux/PKGBUILD +++ b/archlinux/PKGBUILD @@ -1,6 +1,6 @@ # Contributor: Bryan Ischo pkgname=libs3 -pkgver=trunk +pkgver=1.4 pkgrel=1 pkgdesc="C Library and Tools for Amazon S3 Access" arch=('i686' 'x86_64') diff --git a/doxyfile b/doxyfile index 0c7aedc..cf96076 100644 --- a/doxyfile +++ b/doxyfile @@ -23,7 +23,7 @@ PROJECT_NAME = libs3 # This could be handy for archiving the generated documentation or # if some version control system is used. -PROJECT_NUMBER = trunk +PROJECT_NUMBER = 1.4 # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. diff --git a/libs3.spec b/libs3.spec index 95c3678..52a45b2 100644 --- a/libs3.spec +++ b/libs3.spec @@ -1,11 +1,11 @@ Summary: C Library and Tools for Amazon S3 Access Name: libs3 -Version: trunk +Version: 1.4 Release: 1 License: GPL Group: Networking/Utilities URL: http://sourceforge.net/projects/reallibs3 -Source0: libs3-trunk.tar.gz +Source0: libs3-1.4.tar.gz Buildroot: %{_tmppath}/%{name}-%{version}-%{release}-root # Want to include curl dependencies, but older Fedora Core uses curl-devel, # and newer Fedora Core uses libcurl-devel ... have to figure out how to -- cgit v1.2.1 From dbfababac17498a14985f3b8f19b184cb6e6f160 Mon Sep 17 00:00:00 2001 From: Bryan Ischo Date: Thu, 12 Feb 2009 23:06:56 +1300 Subject: * Fixed a bug in urlEncode that was not terminating strings sometimes --- src/util.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/util.c b/src/util.c index 0dfa1e3..208ed23 100644 --- a/src/util.c +++ b/src/util.c @@ -63,6 +63,7 @@ int urlEncode(char *dest, const char *src, int maxSrcSize) if (src) while (*src) { if (++len > maxSrcSize) { + *dest = 0; return 0; } const char *urlsafe = urlSafe; -- cgit v1.2.1