~sbalneav/ltsp/libnss_sshsock

« back to all changes in this revision

Viewing changes to src/util.c

  • Committer: Scott Balneaves
  • Date: 2012-10-03 01:09:40 UTC
  • Revision ID: sbalneav@ltsp.org-20121003010940-b97nu4yfxcfnovuh
Slight stylistic cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
90
90
  char **ap = array;   /* array pointer */
91
91
  char **bp = &buffer; /* buffer pointer */
92
92
 
93
 
  while ((*ap = strsep (bp, delim)) != NULL)
94
 
    {
95
 
      ap++;
96
 
    }
 
93
  for (; (*ap = strsep (bp, delim)) != NULL; ap++);
97
94
}
98
95
 
99
96
/*