Skip to content

Commit

Permalink
notyetimplemented error messages for varnish+memcache
Browse files Browse the repository at this point in the history
  • Loading branch information
Paul Asmuth committed Feb 20, 2012
1 parent dfce80a commit ee8f88b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/fastpurge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@ int main(int argc, char* argv[]) {
break;

case ADAPTER_MEMCACHED:
printf("not yet implemented\n");
break;
printf("ERROR: memcached adapter is not yet implemented\n");
return 1;

case ADAPTER_VARNISH:
printf("not yet implemented\n");
break;
printf("ERROR: varnish adapter is not yet implemented\n");
return 1;

case OPT_HDEL:
for (const auto& adapter: adapters)
Expand Down

0 comments on commit ee8f88b

Please sign in to comment.