mirror of
https://github.com/sheumann/hush.git
synced 2025-01-26 14:33:00 +00:00
remove debugging
This commit is contained in:
parent
21fbe0e375
commit
aac2a19e50
@ -304,11 +304,9 @@ more:
|
|||||||
if ((cp == NULL) || (*cp == '#')) {
|
if ((cp == NULL) || (*cp == '#')) {
|
||||||
goto more;
|
goto more;
|
||||||
}
|
}
|
||||||
printf("line is %s\n", cp);
|
|
||||||
|
|
||||||
cp_ptr = strtok_r(cp, " \t", &cp_ptr_ptr);
|
cp_ptr = strtok_r(cp, " \t", &cp_ptr_ptr);
|
||||||
if (cp_ptr == NULL) {
|
if (cp_ptr == NULL) {
|
||||||
printf("error\n");
|
|
||||||
/* Error */
|
/* Error */
|
||||||
goto more;
|
goto more;
|
||||||
}
|
}
|
||||||
@ -316,7 +314,6 @@ more:
|
|||||||
|
|
||||||
cp_ptr = strtok_r(NULL, " \t", &cp_ptr_ptr);
|
cp_ptr = strtok_r(NULL, " \t", &cp_ptr_ptr);
|
||||||
if (cp_ptr == NULL) {
|
if (cp_ptr == NULL) {
|
||||||
printf("error\n");
|
|
||||||
/* Error */
|
/* Error */
|
||||||
goto more;
|
goto more;
|
||||||
}
|
}
|
||||||
@ -335,7 +332,6 @@ more:
|
|||||||
|
|
||||||
cp_ptr = strtok_r(NULL, " \t", &cp_ptr_ptr);
|
cp_ptr = strtok_r(NULL, " \t", &cp_ptr_ptr);
|
||||||
if (cp_ptr == NULL) {
|
if (cp_ptr == NULL) {
|
||||||
printf("error\n");
|
|
||||||
/* error */
|
/* error */
|
||||||
goto more;
|
goto more;
|
||||||
}
|
}
|
||||||
@ -353,7 +349,6 @@ more:
|
|||||||
|
|
||||||
cp_ptr = strtok_r(NULL, " \t", &cp_ptr_ptr);
|
cp_ptr = strtok_r(NULL, " \t", &cp_ptr_ptr);
|
||||||
if (cp_ptr == NULL) {
|
if (cp_ptr == NULL) {
|
||||||
printf("error\n");
|
|
||||||
/* error */
|
/* error */
|
||||||
goto more;
|
goto more;
|
||||||
}
|
}
|
||||||
@ -369,7 +364,6 @@ more:
|
|||||||
|
|
||||||
cp_ptr = strtok_r(NULL, " \t", &cp_ptr_ptr);
|
cp_ptr = strtok_r(NULL, " \t", &cp_ptr_ptr);
|
||||||
if (cp_ptr == NULL) {
|
if (cp_ptr == NULL) {
|
||||||
printf("error\n");
|
|
||||||
/* error */
|
/* error */
|
||||||
goto more;
|
goto more;
|
||||||
}
|
}
|
||||||
@ -384,7 +378,6 @@ more:
|
|||||||
|
|
||||||
cp_ptr = strtok_r(NULL, " \t", &cp_ptr_ptr);
|
cp_ptr = strtok_r(NULL, " \t", &cp_ptr_ptr);
|
||||||
if (cp_ptr == NULL) {
|
if (cp_ptr == NULL) {
|
||||||
printf("error\n");
|
|
||||||
/* error */
|
/* error */
|
||||||
goto more;
|
goto more;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user