summaryrefslogtreecommitdiff
path: root/hex.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2009-01-09 02:49:09 +0000
committerEric S. Raymond <esr@thyrsus.com>2009-01-09 02:49:09 +0000
commit7e855354b7794090e27a7056d465677e9aa688c9 (patch)
tree7fdb4d1cb736830873c1b6ee2efd61455f229e3a /hex.c
parent67f9dd1352082c4dac3c68e59bcfb519efb97f5f (diff)
downloadgpsd-7e855354b7794090e27a7056d465677e9aa688c9.tar.gz
Experimental code for sending hexified binary over the control channel.
Diffstat (limited to 'hex.c')
-rw-r--r--hex.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/hex.c b/hex.c
index 19e08cbf..d4d52980 100644
--- a/hex.c
+++ b/hex.c
@@ -52,7 +52,8 @@ char /*@ observer @*/ *gpsd_hexdump(const void *binbuf, size_t binbuflen)
return hexbuf;
}
-int gpsd_hexpack(char *src, char *dst, int len){
+int gpsd_hexpack(char *src, char *dst, size_t len){
+/* hex2bin source string to destination - destination can be same as source */
int i, k, l;
l = (int)(strlen(src) / 2);