chiark / gitweb /
remove rcsids
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Fri, 1 Jun 2012 23:09:11 +0000 (00:09 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Fri, 1 Jun 2012 23:09:11 +0000 (00:09 +0100)
Makefile
authbind-helper.8
authbind.1
authbind.c
debian/changelog
debian/postrm
helper.c
libauthbind.c

index ac988af2b9a2c177d2375150d789b7cb529745cc..c1eed73edda96b2e516b51377ec94bc963911dc9 100644 (file)
--- 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
 
index 278029a56954a2e234f8b1c0a05f7ee05ba87993..835c97f84dc4bd7ae4ff8ddc615822256baac72a 100644 (file)
@@ -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 
index f60db94756e7d24be550acf5b7729dd0ed91d998..b8710f5e807f2460335131904153886cc5f6c0a5 100644 (file)
@@ -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
index 50d735eb837e3f164ec4e8869e18d4b66446eed3..484f0e74f332f1d9a87a33eed7386832934724d1 100644 (file)
 
 #include "authbind.h"
 
-static const char *rcsid="$Id$";
-
 static void printusage(FILE *f) {
   if (fprintf(f,
              "usage:       authbind [<options>] <program> <arg> <arg> ...\n"
              "options:     --deep    --depth <levels>\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) {
index 3b06a189d62f9aace789006330cda851b84b1493..c0ff8ad0c86b25987c021a98367b5cf94e35367b 100644 (file)
@@ -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 <ian@zealot.relativity.greenend.org.uk>  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 <ian@davenant.greenend.org.uk>  Sat, 29 Aug 1998 20:10:37 +0100
-
-Local variables:
-mode: debian-changelog
-End:
index 4883c3b0a7ed504a501ab7fbe3595177efb519c8..54aa82de67d8ce65b8dde760ab4478936a0a71fd 100755 (executable)
@@ -1,5 +1,4 @@
 #!/bin/sh
-# $Id$
 set -e
 if test "$1" = purge
 then
index 09250753bd8b28a93a03723a046fc93533eb6854..77456c1b62b03528793657361d57cc3d9d1bf8cd 100644 (file)
--- 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);
 }
 
index 183a206b25eb611193a0b574fd9443ccdba0b11c..d63bc97e1f4be860db1f1da4f10272c934036764 100644 (file)
@@ -31,8 +31,6 @@
 #include <sys/wait.h>
 #include <netinet/in.h>
 
-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);
   }