This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
Holger Freyther gerrit-no-reply at lists.osmocom.org
Review at https://gerrit.osmocom.org/2284
api doc: Call the variable by the right ("crx") name
While "ctx" would be consistent with the rest of libosmocore and other
places, the "crx" occurs so frequently I don't think it is a typo. So
change the API docs to "crx" and leave the code as is.
Change-Id: I27ed1178fdbbcf3fc0e1070dc19b4ecf9a327a04
---
M src/datagram.c
1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmo-netif refs/changes/84/2284/1
diff --git a/src/datagram.c b/src/datagram.c
index d98221f..ab72f95 100644
--- a/src/datagram.c
+++ b/src/datagram.c
@@ -98,7 +98,7 @@
}
/*! \brief Create an Osmocom datagram transmitter
- * \param[in] ctx talloc context from which to allocate memory
+ * \param[in] crx talloc context from which to allocate memory
* This function allocates a new \ref osmo_dgram_tx and initializes
* it with default values
* \returns Osmocom Datagram Transmitter; NULL on error */
@@ -272,7 +272,7 @@
}
/*! \brief Create an Osmocom datagram receiver
- * \param[in] ctx talloc context from which to allocate memory
+ * \param[in] crx talloc context from which to allocate memory
* This function allocates a new \ref osmo_dgram_rx and initializes
* it with default values
* \returns Datagram Receiver; NULL on error */
@@ -393,7 +393,7 @@
/*! \brief Create an Osmocom datagram transceiver (bidirectional)
- * \param[in] ctx talloc context from which to allocate memory
+ * \param[in] crx talloc context from which to allocate memory
* This function allocates a new \ref osmo_dgram and initializes
* it with default values. Internally, the Transceiver is based on a
* tuple of transmitter (\ref osmo_dgram_tx) and receiver (\ref osmo_dgram_rx)
--
To view, visit https://gerrit.osmocom.org/2284
To unsubscribe, visit https://gerrit.osmocom.org/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I27ed1178fdbbcf3fc0e1070dc19b4ecf9a327a04
Gerrit-PatchSet: 1
Gerrit-Project: libosmo-netif
Gerrit-Branch: master
Gerrit-Owner: Holger Freyther <holger at freyther.de>