1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r555: Fix big-endian storage of jobids in jobs_changed list. Found during

debugging of 1279
(This used to be commit 7c1cfb16c0)
This commit is contained in:
Jim McDonough 2004-05-07 15:21:27 +00:00 committed by Gerald (Jerry) Carter
parent 72d124af9e
commit ba8a59dbf4

View File

@ -1905,10 +1905,12 @@ static BOOL allocate_print_jobid(struct tdb_print_db *pdb, int snum, const char
static BOOL add_to_jobs_changed(struct tdb_print_db *pdb, uint32 jobid) static BOOL add_to_jobs_changed(struct tdb_print_db *pdb, uint32 jobid)
{ {
TDB_DATA data, key; TDB_DATA data, key;
uint32 store_jobid;
key.dptr = "INFO/jobs_changed"; key.dptr = "INFO/jobs_changed";
key.dsize = strlen(key.dptr); key.dsize = strlen(key.dptr);
data.dptr = (char *)&jobid; SIVAL(&store_jobid, 0, jobid);
data.dptr = (char *)&store_jobid;
data.dsize = 4; data.dsize = 4;
DEBUG(10,("add_to_jobs_changed: Added jobid %u\n", (unsigned int)jobid )); DEBUG(10,("add_to_jobs_changed: Added jobid %u\n", (unsigned int)jobid ));