Changeset 766 for branches/binary/server/memcached.c
- Timestamp:
- 03/25/08 21:05:29 (20 months ago)
- Files:
-
- 1 modified
-
branches/binary/server/memcached.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/binary/server/memcached.c
r763 r766 61 61 #endif 62 62 63 #ifndef HAVE_DAEMON 64 extern int daemon(int nochdir, int noclose); 65 #endif 66 63 67 /* 64 68 * forward declarations … … 882 886 res_header = (uint32_t *)c->wbuf; 883 887 884 res_header[0] = BIN_RES_MAGIC<< 24;888 res_header[0] = ((uint32_t)BIN_RES_MAGIC) << 24; 885 889 res_header[0] |= ((0xff & c->cmd) << 16); 886 890 res_header[0] |= err & 0xffff;
