Remove dead code
[openafs.git] / src / bucoord / config.c
index bcaf017..5735f70 100644 (file)
 
 struct bc_config *bc_globalConfig;
 
-#if 0
-static int
-TrimLine(char *abuffer, afs_int32 *aport)
-{
-    int tc;
-    char garb[100];
-
-    *aport = 0;
-    sscanf(abuffer, "%s %u", garb, aport);
-    while ((tc = *abuffer)) {
-       if (tc == ' ') {
-           *abuffer = 0;
-           return 0;
-       }
-       abuffer++;
-    }
-    return 0;
-}
-#endif
-
 FILE *
 bc_open(struct bc_config *aconfig, char *aname, char *aext, char *amode)
 {