diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/API-CHANGES-0.6 | 3 | ||||
-rw-r--r-- | docs/COMPAT-LAYERS | 2 | ||||
-rw-r--r-- | docs/DBUS-API | 2 | ||||
-rw-r--r-- | docs/HACKING | 20 | ||||
-rw-r--r-- | docs/INSTALL | 2 | ||||
-rw-r--r-- | docs/MALLOC | 2 | ||||
-rw-r--r-- | docs/NEWS | 6 | ||||
-rw-r--r-- | docs/socket-auto-port.c | 6 |
8 files changed, 9 insertions, 34 deletions
diff --git a/docs/API-CHANGES-0.6 b/docs/API-CHANGES-0.6 index c29dd56..7c08446 100644 --- a/docs/API-CHANGES-0.6 +++ b/docs/API-CHANGES-0.6 @@ -1,6 +1,5 @@ -*-text-*- - A terse (and incomplete) list of API changes between 0.5.2 and 0.6: * Most browsing and registration functions and their callbacks gained @@ -73,5 +72,3 @@ A terse (and incomplete) list of API changes between 0.5.2 and 0.6: * There's now a client side AvahiRecordBrowser, and avahi_entry_group_add_record(). - -$Id$ diff --git a/docs/COMPAT-LAYERS b/docs/COMPAT-LAYERS index 050c988..01b01f2 100644 --- a/docs/COMPAT-LAYERS +++ b/docs/COMPAT-LAYERS @@ -14,5 +14,3 @@ ABI/API compatibility should: $(includedir)/dns_sd.h -- Lennart - -$Id$ diff --git a/docs/DBUS-API b/docs/DBUS-API index 99e16da..7a57aaa 100644 --- a/docs/DBUS-API +++ b/docs/DBUS-API @@ -1,5 +1,3 @@ -$Id$ - * NOTE * This file used to contain an overview of the DBUS API for Avahi, however since it was no longer up to date you should now read the XML-formatted DBUS diff --git a/docs/HACKING b/docs/HACKING index eec7eb7..94a8366 100644 --- a/docs/HACKING +++ b/docs/HACKING @@ -1,19 +1,14 @@ Please comply with the following rules when hacking on Avahi: - * When you add a new textual file to the repository please enable SVN - keyword expansion for it: - - svn ps svn:keywords Id foo.c + * Before commiting check with "git st" that all built files are ignored + by git. To change the list of ignored files use - * Before commiting check with "svn st" that all built files are ignored - by svn. To change the list of ignored files use - - svn pe svn:ignore . + $VISUAL .gitignore This is similar to the ".cvsignore" file in CVS times. * Don't forget to add the autoconf config.h inclusion to all C source files: - + #ifdef HAVE_CONFIG_H #include <config.h> #endif @@ -42,8 +37,6 @@ Please comply with the following rules when hacking on Avahi: For Makefile.am, python and shell code: <snip> -# $Id$ - # This file is part of avahi. # # avahi is free software; you can redistribute it and/or modify it @@ -65,8 +58,6 @@ Please comply with the following rules when hacking on Avahi: For C source code: <snip> -/* $Id$ */ - /*** This file is part of avahi. @@ -86,6 +77,3 @@ Please comply with the following rules when hacking on Avahi: USA. ***/ </snip> - - -$Id$ diff --git a/docs/INSTALL b/docs/INSTALL index 8feac51..419ac3e 100644 --- a/docs/INSTALL +++ b/docs/INSTALL @@ -51,5 +51,3 @@ To start the two daemons at boot time on Debian based distributions: If you plan to use avahi-autoipd you have to create the user/group "avahi-autoipd" much the same way as "avahi". - -$Id$ diff --git a/docs/MALLOC b/docs/MALLOC index 5c7db9e..7c452af 100644 --- a/docs/MALLOC +++ b/docs/MALLOC @@ -6,5 +6,3 @@ situations. Therefore we recommend the usage of memory allocators that abort() in case of OOM. The default allocator used by Avahi does this. Eventually we will improve Avahi to deal with these things better. - -$Id$ @@ -189,7 +189,7 @@ from the last release * Fix potential endless loop in dns label unpacking code (Closes: #84) * Fix bogus assertion in client-publish-service.c example * Mild fix to some doxygen docs for avahi-common/address.h - * Fix passing in custom priviledged group (previously ignored setting) + * Fix passing in custom privileged group (previously ignored setting) (Closes: #85) This release is backwards compatible with Avahi 0.6.x with x < 16. @@ -219,7 +219,7 @@ Changes: Windows under the name APIPA. While it is not the first implemenatation of this technology for Free operating systems it is clearly the most powerful and hopefully even the most secure. (Because it chroot()s and drops - priviliges and suchlike) For more information, especially about packaging + privileges and suchlike) For more information, especially about packaging this new tool for distributions, please make sure to read: http://avahi.org/wiki/AvahiAutoipd and of course the man page included in the tarball. For the rationale for @@ -744,5 +744,3 @@ contribution to Avahi 0.1. Cheers, The Avahi Team - -$Id$ diff --git a/docs/socket-auto-port.c b/docs/socket-auto-port.c index 75dffaf..3c68c70 100644 --- a/docs/socket-auto-port.c +++ b/docs/socket-auto-port.c @@ -12,11 +12,11 @@ int main(int argc, char *argv[]) { struct sockaddr_storage sa; socklen_t salen; uint16_t port; - + if ((s = socket(PF_INET6, SOCK_STREAM, 0)) < 0) { if (errno == EAFNOSUPPORT) s = socket(PF_INET, SOCK_STREAM, 0); - + if (s < 0) { perror("socket()"); return 1; @@ -44,6 +44,6 @@ int main(int argc, char *argv[]) { /* ... hic sunt leones ... */ sleep(60); - + return 0; } |