Send inn-committers mailing list submissions to inn-committers@lists.isc.org
To subscribe or unsubscribe via the World Wide Web, visit https://lists.isc.org/mailman/listinfo/inn-committers or, via email, send a message with subject or body 'help' to inn-committers-requ...@lists.isc.org You can reach the person managing the list at inn-committers-ow...@lists.isc.org When replying, please edit your Subject line so it is more specific than "Re: Contents of inn-committers digest..." Today's Topics: 1. INN commit: trunk/include/inn (dbz.h) (INN Commit) 2. INN commit: trunk/storage (expire.c) (INN Commit) 3. INN commit: trunk/innd (icd.c python.c) (INN Commit) 4. INN commit: trunk/doc/pod (actsync.pod) (INN Commit) 5. INN commit: branches/2.5/doc/pod (actsync.pod) (INN Commit) ---------------------------------------------------------------------- Message: 1 Date: Tue, 21 May 2013 11:32:36 -0700 (PDT) From: INN Commit <r...@isc.org> To: inn-committ...@isc.org Subject: INN commit: trunk/include/inn (dbz.h) Message-ID: <20130521183236.2b3ba67...@hope.eyrie.org> Date: Tuesday, May 21, 2013 @ 11:32:35 Author: iulius Revision: 9471 add a comment to remember why PACKED is needed Modified: trunk/include/inn/dbz.h -------+ dbz.h | 4 ++++ 1 file changed, 4 insertions(+) Modified: dbz.h =================================================================== --- dbz.h 2013-05-20 16:34:54 UTC (rev 9470) +++ dbz.h 2013-05-21 18:32:35 UTC (rev 9471) @@ -49,6 +49,10 @@ #if !defined(lint) && (defined(__SUNPRO_C) || defined(_nec_ews)) #pragma pack(1) #endif /* nor lint, nor __SUNPRO_C, nor sgi, nor _nec_ews */ +/* Leave the PACKED on there because removing it might change the layout of + * the data structure on disk on some platform, thus invalidating old history + * files. It is fairly unlikely that this is a problem, though. + */ typedef struct { char hash[DBZ_INTERNAL_HASH_SIZE]; } PACKED erec; ------------------------------ Message: 2 Date: Tue, 21 May 2013 11:35:10 -0700 (PDT) From: INN Commit <r...@isc.org> To: inn-committ...@isc.org Subject: INN commit: trunk/storage (expire.c) Message-ID: <20130521183510.9981067...@hope.eyrie.org> Date: Tuesday, May 21, 2013 @ 11:35:10 Author: iulius Revision: 9472 remove useless code Modified: trunk/storage/expire.c ----------+ expire.c | 6 ------ 1 file changed, 6 deletions(-) Modified: expire.c =================================================================== --- expire.c 2013-05-21 18:32:35 UTC (rev 9471) +++ expire.c 2013-05-21 18:35:10 UTC (rev 9472) @@ -157,12 +157,6 @@ if (!p) return 0; - while (*p == sep) - ++p; - - if (!*p) - return 0; - for (i = 1, *argv++ = p; *p; ) if (*p++ == sep) { p[-1] = '\0'; ------------------------------ Message: 3 Date: Tue, 21 May 2013 11:40:32 -0700 (PDT) From: INN Commit <r...@isc.org> To: inn-committ...@isc.org Subject: INN commit: trunk/innd (icd.c python.c) Message-ID: <20130521184032.bc40467...@hope.eyrie.org> Date: Tuesday, May 21, 2013 @ 11:40:32 Author: iulius Revision: 9473 fix two old style definitions Modified: trunk/innd/icd.c trunk/innd/python.c ----------+ icd.c | 3 +-- python.c | 4 +--- 2 files changed, 2 insertions(+), 5 deletions(-) Modified: icd.c =================================================================== --- icd.c 2013-05-21 18:35:10 UTC (rev 9472) +++ icd.c 2013-05-21 18:40:32 UTC (rev 9473) @@ -439,8 +439,7 @@ ** Open the active file and "map" it into memory. */ char * -ICDreadactive(endp) - char **endp; +ICDreadactive(char **endp) { struct stat Sb; Modified: python.c =================================================================== --- python.c 2013-05-21 18:35:10 UTC (rev 9472) +++ python.c 2013-05-21 18:40:32 UTC (rev 9473) @@ -196,9 +196,7 @@ ** Tell the external module about innd's state. */ void -PYmode(Mode, NewMode, reason) - OPERATINGMODE Mode, NewMode; - char *reason; +PYmode(OPERATINGMODE Mode, OPERATINGMODE NewMode, char *reason) { PyObject *result; char oldmode[10], newmode[10]; ------------------------------ Message: 4 Date: Tue, 21 May 2013 13:05:24 -0700 (PDT) From: INN Commit <r...@isc.org> To: inn-committ...@isc.org Subject: INN commit: trunk/doc/pod (actsync.pod) Message-ID: <20130521200524.87c2467...@hope.eyrie.org> Date: Tuesday, May 21, 2013 @ 13:05:24 Author: eagle Revision: 9474 Force the actsync exit code documentation to not be a numbered list POD has changed how it disambiguates numbered lists from description lists and issues a new warning. Force the exit codes to be a description list since they don't start with 1. Modified: trunk/doc/pod/actsync.pod -------------+ actsync.pod | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) Modified: actsync.pod =================================================================== --- actsync.pod 2013-05-21 18:40:32 UTC (rev 9473) +++ actsync.pod 2013-05-21 20:05:24 UTC (rev 9474) @@ -524,24 +524,24 @@ =over 2 -=item 0 +=item 0Z<> No debug or status reports (default). -=item 1 +=item 1Z<> Print summary, but only if work was needed or done. -=item 2 +=item 2Z<> Print actions, exec output, and summary, but only if work was needed or done. -=item 3 +=item 3Z<> Print actions, exec output, and summary. -=item 4 +=item 4Z<> Full debug output. ------------------------------ Message: 5 Date: Tue, 21 May 2013 13:06:20 -0700 (PDT) From: INN Commit <r...@isc.org> To: inn-committ...@isc.org Subject: INN commit: branches/2.5/doc/pod (actsync.pod) Message-ID: <20130521200620.ac6d167...@hope.eyrie.org> Date: Tuesday, May 21, 2013 @ 13:06:20 Author: eagle Revision: 9475 Force the actsync exit code documentation to not be a numbered list POD has changed how it disambiguates numbered lists from description lists and issues a new warning. Force the exit codes to be a description list since they don't start with 1. Modified: branches/2.5/doc/pod/actsync.pod -------------+ actsync.pod | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) Modified: actsync.pod =================================================================== --- actsync.pod 2013-05-21 20:05:24 UTC (rev 9474) +++ actsync.pod 2013-05-21 20:06:20 UTC (rev 9475) @@ -525,24 +525,24 @@ =over 2 -=item 0 +=item 0Z<> No debug or status reports (default). -=item 1 +=item 1Z<> Print summary, but only if work was needed or done. -=item 2 +=item 2Z<> Print actions, exec output, and summary, but only if work was needed or done. -=item 3 +=item 3Z<> Print actions, exec output, and summary. -=item 4 +=item 4Z<> Full debug output. ------------------------------ _______________________________________________ inn-committers mailing list inn-committers@lists.isc.org https://lists.isc.org/mailman/listinfo/inn-committers End of inn-committers Digest, Vol 51, Issue 2 *********************************************