From 098b5d40a57c11d3ec3fb7847d9b6ee0c0923f76 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Wed, 19 Mar 2008 20:31:21 +0100 Subject: [PATCH] Cosmetic --- common/util.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/util.h b/common/util.h index ac621eb26..9336bee63 100644 --- a/common/util.h +++ b/common/util.h @@ -221,15 +221,15 @@ static inline ssize_t a_strcat(char *dst, ssize_t n, const char *src) /** \brief safe strncat. * - * The m_strncat() function appends at most \c n chars from the string \c src + * The a_strncat() function appends at most \c n chars from the string \c src * at the end of the buffer \c dst if space is available. * * \param[in] dst destination buffer. * \param[in] n size of the buffer, Negative sizes are allowed. * \param[in] src the string to append. * \param[in] l maximum number of chars of src to consider. - * \return the smallest value between m_strlen(dst) + m_strlen(src) - * and m_strlen(dst) + l + * \return the smallest value between a_strlen(dst) + a_strlen(src) + * and a_strlen(dst) + l */ static inline ssize_t a_strncat(char *dst, ssize_t n, const char *src, ssize_t l)