aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2019-01-15 14:14:51 +0100
committerOliver Smith <osmith@sysmocom.de>2019-01-15 14:16:16 +0100
commit2dc7d960a1107600f3db9350fe918328dc1b23a6 (patch)
treee5927758efe30e2b0ddcfeb902bd64f923351e4f
parent52c4aa09b27e23cc8c7d71fc221e6dc914d5bc13 (diff)
Cosmetic: fix arg desc of db_subscr_update_msisdn_by_imsi()
Properly note that NULL can only be passed as msisdn, not imsi in that function. Change-Id: I19b6ad0cf6e9a4bfa9bffa447ebfc7bd1bcac361
-rw-r--r--src/db_hlr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/db_hlr.c b/src/db_hlr.c
index c97cd82..2569477 100644
--- a/src/db_hlr.c
+++ b/src/db_hlr.c
@@ -141,8 +141,8 @@ int db_subscr_delete_by_id(struct db_context *dbc, int64_t subscr_id)
/*! Set a subscriber's MSISDN in the HLR database.
* \param[in,out] dbc database context.
- * \param[in] imsi ASCII string of IMSI digits, or NULL to remove the MSISDN.
- * \param[in] msisdn ASCII string of MSISDN digits.
+ * \param[in] imsi ASCII string of IMSI digits
+ * \param[in] msisdn ASCII string of MSISDN digits, or NULL to remove the MSISDN.
* \returns 0 on success, -EINVAL in case of invalid MSISDN string, -EIO on
* database failure, -ENOENT if no such subscriber exists.
*/