aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcerpc-samr.c
AgeCommit message (Collapse)AuthorFilesLines
2005-08-19some ememificationLuis Ontanon1-28/+18
svn path=/trunk/; revision=15431
2005-08-14Some 'no previous declararion' warning fixesJörg Mayer1-2/+2
svn path=/trunk/; revision=15355
2005-08-08various code cleanup:Ulf Lamping1-8/+4
-use g_snprintf instead of sprintf and snprintf -use g_strdup_printf where appropriate -remove #include "snprintf.h" (as only g_snprintf should be used) -replace some more alloc/realloc/calloc/free with their glib pendants svn path=/trunk/; revision=15264
2005-07-26char -> const char warning fixesJörg Mayer1-1/+1
svn path=/trunk/; revision=15079
2005-07-24Constify to remove a bunch of warnings. Add some casts to squelchGuy Harris1-1/+1
(presumably-)harmless-but-otherwise-unremovable const-to-nonconst warnings. In the TACACS dissector, clean up the variables used in option parsing to avoid some const-to-nonconst warnings. Clean up some white space. svn path=/trunk/; revision=15043
2005-06-26packet-dcerpc-samr.c(2795) : warning C4090: '=' : different 'const' qualifiersUlf Lamping1-3/+3
packet-dcerpc-samr.c(2900) : warning C4090: '=' : different 'const' qualifiers packet-dcerpc-samr.c(2933) : warning C4090: '=' : different 'const' qualifiers svn path=/trunk/; revision=14776
2005-06-15In sam_dissect_SAM_SECURITY_DESCRIPTOR_data(), throw an exception if weGerald Combs1-0/+3
fetch a too-long length. Fixes bug 236. svn path=/trunk/; revision=14637
2005-06-14From Steve Grubb:Gerald Combs1-4/+4
Fix bounds checking in lemon.c. Fix up an if/else block in packet-dcerpc-samr.c. Fix hex printing in packet-gtp.c. Fix other problems discovered by Steve: Fix a bounds check in packet-isis-lsp.c. Also, fix netmask printing on non-little-endian machines. Add a comment about adding a netmask routine to to_str.c. Add bounds checks to packet-ncp2222.inc. All of these apply to bug 217. svn path=/trunk/; revision=14627
2005-03-25updates to SAMRRonnie Sahlberg1-2/+46
from Michael richardson svn path=/trunk/; revision=13903
2005-01-28older MS DCE/RPC interfaces often use a construct that is to be treated as a ↵Ronnie Sahlberg1-3/+3
64 bit integer but in reality is a struct containing 2 32bit integers. this construct is aligned on 4 byte boundaries in ndr and NOT 8 bytes as a real uint64 (== hyper) would be. rename the existing dissect_ndr_uint64 ro dissect_ndr_duint32 (double uint32) to make it reflect better the alignment of the type. svn path=/trunk/; revision=13184
2004-09-27Move the DES, MD4, MD5, and RC4 source files and headers into epan, andGuy Harris1-2/+2
make the source files all include the corresponding header files (so that the declarations in the headers have to match the definitions in the source files in order for compilation to succeed). svn path=/trunk/; revision=12116
2004-09-27Move prefs.c and prefs.h into the epan subdirectory.Guy Harris1-1/+1
svn path=/trunk/; revision=12115
2004-08-31break out the nt decryption and password handling into a separate functionRonnie Sahlberg1-50/+63
so we can call it from elsewhere svn path=/trunk/; revision=11857
2004-08-03Move a bunch of stuff that's more Windows-related than SMB-related toGuy Harris1-1/+1
"packet-windows-common.[ch]". svn path=/trunk/; revision=11592
2004-07-18Move dissectors to epan/dissectors directory.Gilbert Ramirez1-0/+5636
Also move ncp222.py, x11-fields, process-x11-fields.pl, make-reg-dotc, and make-reg-dotc.py. Adjust #include lines in files that include packet-*.h files. svn path=/trunk/; revision=11410