<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>change log for rtems (2011-10-18)</title>
</head>
<body text='#000000' bgcolor='#ffffff'>
<a name='cs1'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-10-18 Ralf Corsépius <ralf.corsepius@rtems.org>

        * libmisc/shell/fts.c: Conditionally use var "nostat".
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2954&r2=text&tr2=1.2955&diff_format=h">M</a></td><td width='1%'>1.2955</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libmisc/shell/fts.c.diff?r1=text&tr1=1.12&r2=text&tr2=1.13&diff_format=h">M</a></td><td width='1%'>1.13</td><td width='100%'>cpukit/libmisc/shell/fts.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2954 rtems/cpukit/ChangeLog:1.2955
--- rtems/cpukit/ChangeLog:1.2954       Tue Oct 18 04:04:36 2011
+++ rtems/cpukit/ChangeLog      Tue Oct 18 04:21:31 2011
</font><font color='#997700'>@@ -1,5 +1,6 @@
</font> 2011-10-18        Ralf Corsépius <ralf.corsepius@rtems.org>
 
<font color='#000088'>+   * libmisc/shell/fts.c: Conditionally use var "nostat".
</font>   * pppd/options.c: Remove unused var "ok".
        * libnetworking/rtems/rtems_dhcp.c: Remove unused var
        "disconnected".

<font color='#006600'>diff -u rtems/cpukit/libmisc/shell/fts.c:1.12 rtems/cpukit/libmisc/shell/fts.c:1.13
--- rtems/cpukit/libmisc/shell/fts.c:1.12       Sat May 29 00:17:11 2010
+++ rtems/cpukit/libmisc/shell/fts.c    Tue Oct 18 04:21:32 2011
</font><font color='#997700'>@@ -643,7 +643,11 @@
</font>   DIR *dirp;
        void *oldaddr;
        size_t dnamlen;
<font color='#880000'>-   int cderrno, descend, level, nlinks, saved_errno, nostat, doadjust;
</font><font color='#000088'>+      int cderrno, descend, level, nlinks, saved_errno;
+#ifdef DT_DIR
+       int nostat;
+#endif
+       int doadjust;
</font>   size_t len, maxlen;
 #ifdef FTS_WHITEOUT
        int oflag;
<font color='#997700'>@@ -682,13 +686,19 @@
</font>    */
        if (type == BNAMES) {
                nlinks = 0;
<font color='#000088'>+#ifdef DT_DIR
</font>           nostat = 1;
<font color='#000088'>+#endif
</font>   } else if (ISSET(FTS_NOSTAT) && ISSET(FTS_PHYSICAL)) {
                nlinks = cur->fts_nlink - (ISSET(FTS_SEEDOT) ? 0 : 2);
<font color='#000088'>+#ifdef DT_DIR
</font>           nostat = 1;
<font color='#000088'>+#endif
</font>   } else {
                nlinks = -1;
<font color='#000088'>+#ifdef DT_DIR
</font>           nostat = 0;
<font color='#000088'>+#endif
</font>   }
 
 #ifdef notdef
</pre>
<p> </p>
<a name='cs2'></a>
<table border='0' cellspacing='0' cellpadding='5' width='100%' bgcolor='#eeeeee'>
<tr><td colspan='3' bgcolor='#dddddd'>
 <font color='#bb2222'><strong>ralf</strong></font>
</td></tr>
<tr><td colspan='3' bgcolor='#dddddd'><pre>2011-10-18 Ralf Corsépius <ralf.corsepius@rtems.org>

        * libfs/src/pipe/fifo.c: Conditionally use var "sc".
</pre></td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/ChangeLog.diff?r1=text&tr1=1.2955&r2=text&tr2=1.2956&diff_format=h">M</a></td><td width='1%'>1.2956</td><td width='100%'>cpukit/ChangeLog</td></tr>
<tr><td width='1%'><a href="http://www.rtems.com/cgi-bin/viewcvs.cgi//rtems/cpukit/libfs/src/pipe/fifo.c.diff?r1=text&tr1=1.12&r2=text&tr2=1.13&diff_format=h">M</a></td><td width='1%'>1.13</td><td width='100%'>cpukit/libfs/src/pipe/fifo.c</td></tr>
</table>
<pre>
<font color='#006600'>diff -u rtems/cpukit/ChangeLog:1.2955 rtems/cpukit/ChangeLog:1.2956
--- rtems/cpukit/ChangeLog:1.2955       Tue Oct 18 04:21:31 2011
+++ rtems/cpukit/ChangeLog      Tue Oct 18 04:35:17 2011
</font><font color='#997700'>@@ -1,5 +1,6 @@
</font> 2011-10-18        Ralf Corsépius <ralf.corsepius@rtems.org>
 
<font color='#000088'>+   * libfs/src/pipe/fifo.c: Conditionally use var "sc".
</font>   * libmisc/shell/fts.c: Conditionally use var "nostat".
        * pppd/options.c: Remove unused var "ok".
        * libnetworking/rtems/rtems_dhcp.c: Remove unused var

<font color='#006600'>diff -u rtems/cpukit/libfs/src/pipe/fifo.c:1.12 rtems/cpukit/libfs/src/pipe/fifo.c:1.13
--- rtems/cpukit/libfs/src/pipe/fifo.c:1.12     Fri Apr 15 06:13:21 2011
+++ rtems/cpukit/libfs/src/pipe/fifo.c  Tue Oct 18 04:35:17 2011
</font><font color='#997700'>@@ -187,9 +187,12 @@
</font> 
 static void pipe_unlock(void)
 {
<font color='#000088'>+#ifdef RTEMS_DEBUG
</font>   rtems_status_code sc = RTEMS_SUCCESSFUL;
 
<font color='#880000'>-  sc = rtems_semaphore_release(pipe_semaphore);
</font><font color='#000088'>+  sc =
+#endif
+   rtems_semaphore_release(pipe_semaphore);
</font>   #ifdef RTEMS_DEBUG
     if (sc != RTEMS_SUCCESSFUL) {
       rtems_fatal_error_occurred(0xdeadbeef);
</pre>
<p> </p>

<p>--<br />
<small>Generated by <a href="http://www.codewiz.org/projects/index.html#loginfo">Deluxe Loginfo</a> 2.122 by Bernardo Innocenti <bernie@develer.com></small></p>
</body>
</html>