diff options
author | Sylvain Munaut <tnt@246tNt.com> | 2011-11-11 23:06:55 +0100 |
---|---|---|
committer | Sylvain Munaut <tnt@246tNt.com> | 2011-11-11 23:06:55 +0100 |
commit | e55ae3ae1c631f08714f88f13ae75bfadd47cd51 (patch) | |
tree | 6ccedb06c9bbfac177486adb206ced6db9e4060a /src/utils.c | |
parent | ff23d2497286c8d4876009642bf6d35a2b9b2856 (diff) |
core/utils: Add a symbol alias for a previous typo for compatibility
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Diffstat (limited to 'src/utils.c')
-rw-r--r-- | src/utils.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/utils.c b/src/utils.c index 50adc314..d32c5c07 100644 --- a/src/utils.c +++ b/src/utils.c @@ -178,6 +178,10 @@ char *osmo_hexdump_nospc(const unsigned char *buf, int len) return _osmo_hexdump(buf, len, ""); } + /* Compat with previous typo to preserve abi */ +char *osmo_osmo_hexdump_nospc(const unsigned char *buf, int len) + __attribute__((alias("osmo_hexdump_nospc"))); + #include "../config.h" #ifdef HAVE_CTYPE_H #include <ctype.h> |