From Hannes Gredler: "print_system_id()" should call

"print_system_id_buf()", not "print_nsap_net_buf()".  (What idiot made
*that* mistake? :-))

svn path=/trunk/; revision=9046
This commit is contained in:
Guy Harris 2003-11-20 19:05:40 +00:00
parent 137b1e31e9
commit f42de5c9b2
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
* Routines for ISO/OSI network and transport protocol packet disassembly
* Main entrance point and common functions
*
* $Id: osi-utils.c,v 1.13 2003/09/10 06:48:55 guy Exp $
* $Id: osi-utils.c,v 1.14 2003/11/20 19:05:40 guy Exp $
* Laurent Deniel <laurent.deniel@free.fr>
* Ralf Schneider <Ralf.Schneider@t-online.de>
*
@ -81,7 +81,7 @@ print_system_id( const guint8 *ad, int length )
gchar *cur;
cur = str;
print_nsap_net_buf( ad, length, cur );
print_system_id_buf(ad, length, cur );
return( cur );
}