diff options
| author | Kris Kennaway <kris@FreeBSD.org> | 2001-03-05 02:54:13 +0000 |
|---|---|---|
| committer | Kris Kennaway <kris@FreeBSD.org> | 2001-03-05 02:54:13 +0000 |
| commit | fc03710c559bbc8a344c7cf9ccb68b6800c45d86 (patch) | |
| tree | df31a874707c21c26736821024ac4a376c48ef6f | |
| parent | 3eca04a56bb1a38b8a7eac08022e23a3314c487d (diff) | |
| parent | 18690202e26a5c438b2db07adc746ffea88c3067 (diff) | |
Notes
| -rw-r--r-- | contrib/opie/opielogin.c | 2 | ||||
| -rw-r--r-- | contrib/opie/permsfile.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/opie/opielogin.c b/contrib/opie/opielogin.c index eacfac9593f3..8ca8de075866 100644 --- a/contrib/opie/opielogin.c +++ b/contrib/opie/opielogin.c @@ -291,7 +291,7 @@ static VOIDRET getloginname FUNCTION_NOARGS flags = 4; first--; } else - printf(ttyprompt); + printf("%s", ttyprompt); } else printf("login: "); fflush(stdout); diff --git a/contrib/opie/permsfile.c b/contrib/opie/permsfile.c index 46650b1aeba4..13b3ea3b44f2 100644 --- a/contrib/opie/permsfile.c +++ b/contrib/opie/permsfile.c @@ -48,7 +48,7 @@ char **ftpglob __P((char *)); VOIDRET opiefatal FUNCTION((x), char *x) { - fprintf(stderr, x); + fprintf(stderr, "%s", x); exit(1); } |
