diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2007-12-07 14:10:17 +0100 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2007-12-07 14:10:17 +0100 |
commit | 5dc165d99a2b9250d554ad0700417a9b9b61dedc (patch) | |
tree | 97b7e66ba9a3a53f6e2ab5903530485ab81502d0 /nslcd/nslcd.c | |
parent | 1c2e0d29fa1a22a88e0a48717c8d02c138d5a434 (diff) |
don't use backticks as quote mark
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-ldapd@483 ef36b2f9-881f-0410-afb5-c4e39611909c
Diffstat (limited to 'nslcd/nslcd.c')
-rw-r--r-- | nslcd/nslcd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nslcd/nslcd.c b/nslcd/nslcd.c index ac67c59..eef9841 100644 --- a/nslcd/nslcd.c +++ b/nslcd/nslcd.c @@ -130,7 +130,7 @@ static void parse_cmdline(int argc,char *argv[]) case ':': /* missing required parameter */ case '?': /* unknown option character or extraneous parameter */ default: - fprintf(stderr,"Try `%s --help' for more information.\n", + fprintf(stderr,"Try '%s --help' for more information.\n", argv[0]); exit(EXIT_FAILURE); } @@ -138,9 +138,9 @@ static void parse_cmdline(int argc,char *argv[]) /* check for remaining arguments */ if (optind<argc) { - fprintf(stderr,"%s: unrecognized option `%s'\n", + fprintf(stderr,"%s: unrecognized option '%s'\n", argv[0],argv[optind]); - fprintf(stderr,"Try `%s --help' for more information.\n", + fprintf(stderr,"Try '%s --help' for more information.\n", argv[0]); exit(EXIT_FAILURE); } |