Skip to content

Commit

Permalink
move backend error state reason and code struct field to end of struct
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewwiik authored and bsdphk committed Aug 14, 2019
1 parent 666d842 commit 82ad74a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/varnishd/cache/cache.h
Expand Up @@ -412,9 +412,6 @@ struct busyobj {

struct http_conn *htc;

uint16_t err_code;
const char *err_reason;

struct pool_task fetch_task;

#define BO_FLAG(l, r, w, d) unsigned l:1;
Expand Down Expand Up @@ -442,6 +439,9 @@ struct busyobj {

uint8_t digest[DIGEST_LEN];
struct vrt_privs privs[1];

uint16_t err_code;
const char *err_reason;
};


Expand Down

0 comments on commit 82ad74a

Please sign in to comment.