Deleted Added
full compact
print-smb.c (75147) print-smb.c (80231)
1/*
2 Copyright (C) Andrew Tridgell 1995-1999
3
4 This software may be distributed either under the terms of the
5 BSD-style license that accompanies tcpdump or the GNU GPL version 2
6 or later */
7
8#ifdef HAVE_CONFIG_H

--- 879 unchanged lines hidden (view full) ---

888 if (p[0] & 0x10) printf("<DEREGISTERING> ");
889 if (p[0] & 0x08) printf("<CONFLICT> ");
890 if (p[0] & 0x04) printf("<ACTIVE> ");
891 if (p[0] & 0x02) printf("<PERMANENT> ");
892 printf("\n");
893 p += 2;
894 }
895 } else {
1/*
2 Copyright (C) Andrew Tridgell 1995-1999
3
4 This software may be distributed either under the terms of the
5 BSD-style license that accompanies tcpdump or the GNU GPL version 2
6 or later */
7
8#ifdef HAVE_CONFIG_H

--- 879 unchanged lines hidden (view full) ---

888 if (p[0] & 0x10) printf("<DEREGISTERING> ");
889 if (p[0] & 0x08) printf("<CONFLICT> ");
890 if (p[0] & 0x04) printf("<ACTIVE> ");
891 if (p[0] & 0x02) printf("<PERMANENT> ");
892 printf("\n");
893 p += 2;
894 }
895 } else {
896 print_data(p, min(rdlen, length - ((const uchar *)p - data)));
896 print_data(p,rdlen);
897 p += rdlen;
898 }
899 }
900 }
901 }
902 }
903
904 if ((uchar*)p < maxbuf) {

--- 141 unchanged lines hidden ---
897 p += rdlen;
898 }
899 }
900 }
901 }
902 }
903
904 if ((uchar*)p < maxbuf) {

--- 141 unchanged lines hidden ---