diff options
author | Jeremy Allison <jra@samba.org> | 2002-07-16 21:51:56 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-07-16 21:51:56 +0000 |
commit | 34ed527b1341d3d30b36ddc13a36227b108ec34e (patch) | |
tree | 09dd2b7d1b3c8cb2b9e825f1b19d3e6da8152b70 /source3 | |
parent | bb7de652efdee663aef2325de440047795be7e99 (diff) | |
download | samba-34ed527b1341d3d30b36ddc13a36227b108ec34e.tar.gz samba-34ed527b1341d3d30b36ddc13a36227b108ec34e.tar.bz2 samba-34ed527b1341d3d30b36ddc13a36227b108ec34e.zip |
print_jobid in the fsp struct should be uint32.
Jeremy.
(This used to be commit 51c8338c7ac8665fcaaac6de5f2d81b460e803f5)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/smb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index a67101ff09..636e4ab00c 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -383,7 +383,7 @@ typedef struct files_struct int fnum; struct connection_struct *conn; int fd; - int print_jobid; + uint32 print_jobid; SMB_DEV_T dev; SMB_INO_T inode; BOOL delete_on_close; |