CLEANUP: mux-fcgi: Remove the unused function fcgi_strm_id()

This patch partially fixes the issue #295.
diff --git a/src/mux_fcgi.c b/src/mux_fcgi.c
index ea8e48b..ceff7fa 100644
--- a/src/mux_fcgi.c
+++ b/src/mux_fcgi.c
@@ -613,12 +613,6 @@
 /* functions below are for the FCGI protocol processing */
 /********************************************************/
 
-/* Returns the stream if of stream <fstrm> or 0 if <strm> is NULL */
-static inline int fcgi_strm_id(const struct fcgi_strm *fstrm)
-{
-	return (fstrm ? fstrm->id : 0);
-}
-
 /* Marks an error on the stream. */
 static inline void fcgi_strm_error(struct fcgi_strm *fstrm)
 {