Changeset 4368
- Timestamp:
- 02/09/91 08:15:37 (19 years ago)
- Files:
-
- 1 modified
-
trunk/athena/bin/lpr/lpc.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/athena/bin/lpr/lpc.c
r4271 r4368 1 1 /* 2 2 * $Source: /afs/dev.mit.edu/source/repository/athena/bin/lpr/lpc.c,v $ 3 * $Header: /afs/dev.mit.edu/source/repository/athena/bin/lpr/lpc.c,v 1. 5 1991-01-23 13:19:38epeisach Exp $3 * $Header: /afs/dev.mit.edu/source/repository/athena/bin/lpr/lpc.c,v 1.6 1991-02-09 13:15:37 epeisach Exp $ 4 4 */ 5 5 6 6 #ifndef lint 7 static char *rcsid_lpc_c = "$Header: /afs/dev.mit.edu/source/repository/athena/bin/lpr/lpc.c,v 1. 5 1991-01-23 13:19:38epeisach Exp $";7 static char *rcsid_lpc_c = "$Header: /afs/dev.mit.edu/source/repository/athena/bin/lpr/lpc.c,v 1.6 1991-02-09 13:15:37 epeisach Exp $"; 8 8 #endif lint 9 9 … … 246 246 for (j = 0; j < columns; j++) { 247 247 c = cmdtab + j * lines + i; 248 printf("%s", c->c_name);248 if(c->c_name) printf("%s", c->c_name); 249 249 if (c + lines >= &cmdtab[NCMDS]) { 250 250 printf("\n");
