summaryrefslogtreecommitdiff
path: root/src/utils/errors.c
diff options
context:
space:
mode:
authorAndrew Sidwell <andy@entai.co.uk>2008-08-10 15:49:52 +0000
committerAndrew Sidwell <andy@entai.co.uk>2008-08-10 15:49:52 +0000
commit086bd1eef17d63b36a47ac954b1d90fff3d4115d (patch)
tree07a9ec2dbe0f583eca788a9da6e559c58a664ef0 /src/utils/errors.c
parentc8aaecba0272665ba64380ec62d9fc6eba90c960 (diff)
downloadlibhubbub-086bd1eef17d63b36a47ac954b1d90fff3d4115d.tar.gz
libhubbub-086bd1eef17d63b36a47ac954b1d90fff3d4115d.tar.bz2
Switch to using hubbub_error for reprocessing state from just a bool, to allow for encoding change info to be returned more easily.
svn path=/trunk/hubbub/; revision=4989
Diffstat (limited to 'src/utils/errors.c')
-rw-r--r--src/utils/errors.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/utils/errors.c b/src/utils/errors.c
index ada48cd..9b9dfdb 100644
--- a/src/utils/errors.c
+++ b/src/utils/errors.c
@@ -26,6 +26,9 @@ const char *hubbub_error_to_string(hubbub_error error)
case HUBBUB_OOD:
result = "Out of data";
break;
+ case HUBBUB_REPROCESS:
+ result = "Internal (reprocess token)";
+ break;
case HUBBUB_NOMEM:
result = "Insufficient memory";
break;