Skip to content
Snippets Groups Projects
Commit c09cf4e9 authored by David Byers's avatar David Byers
Browse files

Handle num_list input type

parent 61010735
No related branches found
No related tags found
No related merge requests found
#
# $Id: call-switch.awk,v 0.10 1996/06/09 13:54:09 byers Exp $
# $Id: call-switch.awk,v 0.11 1996/06/14 15:41:46 byers Exp $
# Copyright (C) 1991, 1993, 1994, 1995 Lysator Academic Computer Association.
#
# This file is part of the LysKOM server.
......@@ -22,7 +22,7 @@
#
# Please mail bug reports to bug-lyskom@lysator.liu.se.
#
# $Id: call-switch.awk,v 0.10 1996/06/09 13:54:09 byers Exp $
# $Id: call-switch.awk,v 0.11 1996/06/14 15:41:46 byers Exp $
BEGIN {
printf("/* Don't edit this file - it is generated automatically");
printf(" from\n call-switch.awk and fncdef.txt */\n");
......@@ -65,6 +65,8 @@ $1 != "#" {
printf("&client->time");
else if ( $i == "info" )
printf("&client->info");
else if ( $i == "num_list" )
printf("&client->num_list" );
else
printf("\n#error in file server/fncdef.txt\n");
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment