diff --git a/Projects/Webserver/Lib/HTTPServerApp.c b/Projects/Webserver/Lib/HTTPServerApp.c
index 9a70dade1f959bd25798319c0b985704f36bba02..635a3076c3054506fbe805a143b7043fbfa263bb 100644
--- a/Projects/Webserver/Lib/HTTPServerApp.c
+++ b/Projects/Webserver/Lib/HTTPServerApp.c
@@ -199,7 +199,6 @@ static void HTTPServerApp_SendResponseHeader(void)
 	char*               const AppData     = (char*)uip_appdata;
 
 	char*    HeaderToSend;
-	uint16_t HeaderLength;
 
 	/* Determine which HTTP header should be sent to the client */
 	if (AppState->HTTPServer.FileOpen)
@@ -214,9 +213,8 @@ static void HTTPServerApp_SendResponseHeader(void)
 	}
 
 	/* Copy over the HTTP response header and send it to the receiving client */
-	HeaderLength = strlen_P(HeaderToSend);
-	strncpy_P(AppData, HeaderToSend, HeaderLength);
-	uip_send(AppData, HeaderLength);
+	strcpy_P(AppData, HeaderToSend);
+	uip_send(AppData, strlen(AppData));
 }
 
 /** HTTP Server State handler for the MIME Header Send state. This state manages the transmission of the file
diff --git a/Projects/Webserver/Lib/TELNETServerApp.c b/Projects/Webserver/Lib/TELNETServerApp.c
index cabf52756b12c45582e8cb6e019edee9177e57c4..720f7d14c6f8a23c3c1f318d410a5ebe113f32ce 100644
--- a/Projects/Webserver/Lib/TELNETServerApp.c
+++ b/Projects/Webserver/Lib/TELNETServerApp.c
@@ -79,15 +79,15 @@ void TELNETServerApp_Callback(void)
 		{
 			case TELNET_STATE_SendHeader:
 				/* Copy over and send the TELNET welcome message upon first connection */
-				strncpy_P(AppData, WelcomeHeader, strlen_P(WelcomeHeader));
-				uip_send(AppData, strlen_P(WelcomeHeader));
+				strcpy_P(AppData, WelcomeHeader);
+				uip_send(AppData, strlen(AppData));
 				
 				AppState->TELNETServer.NextState = TELNET_STATE_SendMenu;
 				break;
 			case TELNET_STATE_SendMenu:
 				/* Copy over and send the TELNET menu to the client */
-				strncpy_P(AppData, TELNETMenu, strlen_P(TELNETMenu));
-				uip_send(AppData, strlen_P(TELNETMenu));
+				strcpy_P(AppData, TELNETMenu);
+				uip_send(AppData, strlen(AppData));
 				
 				AppState->TELNETServer.NextState = TELNET_STATE_GetCommand;
 				break;
diff --git a/Projects/Webserver/Lib/uIPManagement.c b/Projects/Webserver/Lib/uIPManagement.c
index a2cadd6741e6e17ac33541ceeb0bf048d8cc9a71..1b94e8afa68a95d8f46102f5276f0c2279c4212e 100644
--- a/Projects/Webserver/Lib/uIPManagement.c
+++ b/Projects/Webserver/Lib/uIPManagement.c
@@ -175,6 +175,7 @@ static void uIPManagement_ProcessIncommingPacket(void)
 /** Manages the currently open network connections, including TCP and (if enabled) UDP. */
 static void uIPManagement_ManageConnections(void)
 {
+#if 0
 	/* Poll TCP connections for more data to send back to the host */
 	for (uint8_t i = 0; i < UIP_CONNS; i++)
 	{
@@ -189,7 +190,7 @@ static void uIPManagement_ManageConnections(void)
 			RNDIS_Host_SendPacket(&Ethernet_RNDIS_Interface, uip_buf, uip_len);
 		}
 	}
-
+#endif
 	/* Manage open connections for timeouts */
 	if (timer_expired(&ConnectionTimer))
 	{
diff --git a/Projects/Webserver/makefile b/Projects/Webserver/makefile
index 949283383ecd138c11e987b0239432796a6b593f..daec03d0b6ea13685e6d2b931e704e4a6d34c8eb 100644
--- a/Projects/Webserver/makefile
+++ b/Projects/Webserver/makefile
@@ -200,11 +200,10 @@ CSTANDARD = -std=gnu99
 CDEFS  = -DF_CPU=$(F_CPU)UL -DF_CLOCK=$(F_CLOCK)UL -DBOARD=BOARD_$(BOARD) $(LUFA_OPTS)
 CDEFS += -DENABLE_DHCP=1
 
-CDEFS += -DUIP_CONF_UDP_CONNS=1 -DUIP_CONF_TCP=1 -DUIP_CONF_MAX_CONNECTIONS=5
-CDEFS += -DUIP_CONF_MAX_LISTENPORTS=5 -DUIP_CONF_BUFFER_SIZE=1514 
-CDEFS += -DUIP_CONF_LL_802154=0 -DUIP_CONF_LL_80211=0 -DUIP_CONF_ROUTER=0 -DUIP_CONF_ICMP6=0 -DUIP_CONF_LL_802154=0
-CDEFS += -DUIP_ARCH_ADD32=0 -DUIP_ARCH_CHKSUM=0 -DUIP_CONF_ICMP_DEST_UNREACH=1 -DUIP_NEIGHBOR_CONF_ADDRTYPE=0
-CDEFS += -DUIP_URGDATA=0 -DUIP_CONF_UDP=ENABLE_DHCP
+CDEFS += -DUIP_CONF_UDP=ENABLE_DHCP -DUIP_CONF_TCP=1 -DUIP_CONF_UDP_CONNS=1 -DUIP_CONF_MAX_CONNECTIONS=5
+CDEFS += -DUIP_CONF_MAX_LISTENPORTS=5 -DUIP_URGDATA=0 -DUIP_CONF_BUFFER_SIZE=1514 -DUIP_ARCH_CHKSUM=0 
+CDEFS += -DUIP_CONF_LL_802154=0 -DUIP_CONF_LL_80211=0 -DUIP_CONF_ROUTER=0 -DUIP_CONF_ICMP6=0
+CDEFS += -DUIP_ARCH_ADD32=0 -DUIP_CONF_ICMP_DEST_UNREACH=1 -DUIP_NEIGHBOR_CONF_ADDRTYPE=0
 
 
 # Place -D or -U options here for ASM sources