diff options
author | Jeremy Allison <jra@samba.org> | 2007-12-10 15:31:05 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2007-12-10 15:31:05 -0800 |
commit | 09fcb233a30e65b4b42f36ce38f70ddd0dfc4746 (patch) | |
tree | e90c0b9bf7112dec10049116eddcbfa8b5e2a8b1 /source3/include | |
parent | 8596a1b60996eda7e51bfd30d625d3201881d2af (diff) | |
download | samba-09fcb233a30e65b4b42f36ce38f70ddd0dfc4746.tar.gz samba-09fcb233a30e65b4b42f36ce38f70ddd0dfc4746.tar.bz2 samba-09fcb233a30e65b4b42f36ce38f70ddd0dfc4746.zip |
Don't need an fstring here, we can talloc.
Jeremy.
(This used to be commit 3f6cc826378729c9157ea68e7cf5c7b584bbb585)
Diffstat (limited to 'source3/include')
-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 763f9555f0..d58c124e6d 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -563,7 +563,7 @@ struct trans_state { uint8 cmd; /* SMBtrans or SMBtrans2 */ - fstring name; /* for trans requests */ + char *name; /* for trans requests */ uint16 call; /* for trans2 and nttrans requests */ bool close_on_completion; |