From e9fb37fdd9029a2084040d6524ed54de0a6185c7 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sat, 2 Jun 2012 00:09:11 +0100 Subject: [PATCH] remove rcsids --- Makefile | 2 -- authbind-helper.8 | 2 -- authbind.1 | 2 -- authbind.c | 6 ++---- debian/changelog | 8 ++------ debian/postrm | 1 - helper.c | 4 +--- libauthbind.c | 6 +----- 8 files changed, 6 insertions(+), 25 deletions(-) diff --git a/Makefile b/Makefile index ac988af..c1eed73 100644 --- a/Makefile +++ b/Makefile @@ -15,8 +15,6 @@ # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software Foundation, # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -# -# $Id$ prefix=/usr/local diff --git a/authbind-helper.8 b/authbind-helper.8 index 278029a..835c97f 100644 --- a/authbind-helper.8 +++ b/authbind-helper.8 @@ -17,8 +17,6 @@ .\" along with this program; if not, write to the Free Software Foundation, .\" Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. .\" -.\" $Id$ -.\" .TH AUTHBIND\-HELPER 8 "30th August 1998" "Debian Project" "Debian Linux manual" .br .SH NAME diff --git a/authbind.1 b/authbind.1 index f60db94..b8710f5 100644 --- a/authbind.1 +++ b/authbind.1 @@ -17,8 +17,6 @@ .\" along with this program; if not, write to the Free Software Foundation, .\" Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. .\" -.\" $Id$ -.\" .TH AUTHBIND 1 "30th August 1998" "Debian Project" "Debian Linux manual" .SH NAME authbind \- bind sockets to privileged ports without root diff --git a/authbind.c b/authbind.c index 50d735e..484f0e7 100644 --- a/authbind.c +++ b/authbind.c @@ -27,14 +27,12 @@ #include "authbind.h" -static const char *rcsid="$Id$"; - static void printusage(FILE *f) { if (fprintf(f, "usage: authbind [] ...\n" "options: --deep --depth \n" - "version: " MAJOR_VER "." MINOR_VER " %s\n", - rcsid) == EOF) { perror("printf usage"); exit(-1); } + "version: " MAJOR_VER "." MINOR_VER "\n") + == EOF) { perror("printf usage"); exit(-1); } } static void usageerror(const char *msg) { diff --git a/debian/changelog b/debian/changelog index 3b06a18..c0ff8ad 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -authbind (2.0.0) unstable; urgency=medium +authbind (2.0.0~~iwj) unstable; urgency=medium * Support IPv6. (Closes: #596921.) * Support ports 512-1023 if the user really wants. @@ -9,7 +9,7 @@ authbind (2.0.0) unstable; urgency=medium * Set Priority to optional as in ftpmaster override file. * Upstream repo is now in git. - -- + -- Ian Jackson Sat, 02 Jun 2012 00:05:29 +0100 authbind (1.2.0) unstable; urgency=low @@ -123,7 +123,3 @@ authbind (0.1-1) experimental; urgency=low * Initial release. -- Ian Jackson Sat, 29 Aug 1998 20:10:37 +0100 - -Local variables: -mode: debian-changelog -End: diff --git a/debian/postrm b/debian/postrm index 4883c3b..54aa82d 100755 --- a/debian/postrm +++ b/debian/postrm @@ -1,5 +1,4 @@ #!/bin/sh -# $Id$ set -e if test "$1" = purge then diff --git a/helper.c b/helper.c index 0925075..77456c1 100644 --- a/helper.c +++ b/helper.c @@ -34,8 +34,6 @@ # define CONFIGDIR "/etc/authbind" #endif -static const char *rcsid="$Id$"; - static void exiterrno(int e) { exit(e>0 && e<128 ? e : ENOSYS); } @@ -48,7 +46,7 @@ static void perrorfail(const char *m) { } static void badusage(void) { - fprintf(stderr,"libauthbind's helper: bad usage\n (%s)\n",rcsid); + fprintf(stderr,"libauthbind's helper: bad usage\n"); exit(ENOSYS); } diff --git a/libauthbind.c b/libauthbind.c index 183a206..d63bc97 100644 --- a/libauthbind.c +++ b/libauthbind.c @@ -31,8 +31,6 @@ #include #include -static const char *rcsid="$Id$"; - #include "authbind.h" typedef void anyfn_type(void); @@ -205,9 +203,7 @@ int bind(int fd, const struct sockaddr *addr, socklen_t addrlen) { execl(HELPER,HELPER,addrarg,portarg,afarg,(char*)0); status= errno > 0 && errno < 127 ? errno : 127; STDERRSTR_CONST("libauthbind: possible installation problem - " - "could not invoke " HELPER " ("); - STDERRSTR_STRING(rcsid); - STDERRSTR_CONST(")\n"); + "could not invoke " HELPER "\n"); exiterrno(status); } -- 2.30.2