blob: 96f30e5b3600357c50328bd0ee7e89f4736273b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Binary files qstat25b/.qstat.c.swp and qstat25b.gcc3-fix/.qstat.c.swp differ
diff -urN qstat25b/qstat.c qstat25b.gcc3-fix/qstat.c
--- qstat25b/qstat.c Thu Aug 8 15:26:59 2002
+++ qstat25b.gcc3-fix/qstat.c Mon Sep 16 06:35:28 2002
@@ -1531,7 +1531,7 @@
{
server_type *type= &types[0];
char *t= type_string;
- while ( *t) *t++= tolower( *t);
+ while ( *t) {*t= tolower( *t);t++;}
for ( ; type->id != Q_UNKNOWN_TYPE; type++)
if ( strcmp( type->type_string, type_string) == 0)
|