Use bool type instead of int in config field

Change-Id: Ie2624a6a6848c3c88deb39760317860d8074acb9
diff --git a/include/osmocom/mgcp/mgcp.h b/include/osmocom/mgcp/mgcp.h
index ee419ef..c707f07 100644
--- a/include/osmocom/mgcp/mgcp.h
+++ b/include/osmocom/mgcp/mgcp.h
@@ -164,7 +164,7 @@
 	/* The BSC-NAT may ask for enabling osmux on demand. This tells us if
 	 * the osmux socket is already initialized.
 	 */
-	int osmux_init;
+	bool osmux_init;
 	/* osmux batch factor: from 1 to 4 maximum */
 	int osmux_batch;
 	/* osmux batch size (in bytes) */
diff --git a/src/libosmo-mgcp/mgcp_osmux.c b/src/libosmo-mgcp/mgcp_osmux.c
index 06dc705..83a96fe 100644
--- a/src/libosmo-mgcp/mgcp_osmux.c
+++ b/src/libosmo-mgcp/mgcp_osmux.c
@@ -463,7 +463,7 @@
 		     osmo_sock_get_name2(osmux_fd.fd));
 		return ret;
 	}
-	cfg->osmux_init = 1;
+	cfg->osmux_init = true;
 
 	LOGP(DOSMUX, LOGL_INFO, "OSMUX socket listening on %s\n",
 		 osmo_sock_get_name2(osmux_fd.fd));