Przeglądaj źródła

slirp: Fix unusual "comments" in unused code

cppcheck detected two rather strange comments which were not
correctly written as C comments.

They did not cause any harm because they were framed by
#ifdef notdef ... #endif, so they were never compiled.

Fix them nevertheless (we could also remove the unused code).

Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Stefan Weil 14 lat temu
rodzic
commit
cf2846b5fa
1 zmienionych plików z 2 dodań i 2 usunięć
  1. 2 2
      slirp/ip_input.c

+ 2 - 2
slirp/ip_input.c

@@ -511,7 +511,7 @@ typedef uint32_t n_time;
 				 */
 				 */
 				break;
 				break;
 			}
 			}
-			off--;			/ * 0 origin *  /
+                        off--; /* 0 origin */
 			if (off > optlen - sizeof(struct in_addr)) {
 			if (off > optlen - sizeof(struct in_addr)) {
 				/*
 				/*
 				 * End of source route.  Should be for us.
 				 * End of source route.  Should be for us.
@@ -554,7 +554,7 @@ typedef uint32_t n_time;
 			/*
 			/*
 			 * If no space remains, ignore.
 			 * If no space remains, ignore.
 			 */
 			 */
-			off--;			 * 0 origin *
+                        off--; /* 0 origin */
 			if (off > optlen - sizeof(struct in_addr))
 			if (off > optlen - sizeof(struct in_addr))
 				break;
 				break;
 			bcopy((caddr_t)(&ip->ip_dst), (caddr_t)&ipaddr.sin_addr,
 			bcopy((caddr_t)(&ip->ip_dst), (caddr_t)&ipaddr.sin_addr,