From ce5ddb4e523166222f018d6ece4d11bd719b8fb8 Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Wed, 21 Jan 2015 13:25:32 +0000 Subject: [PATCH] changed apostrophe git-svn-id: https://zerberus.eonerc.rwth-aachen.de:8443/svn/s2ss/trunk@274 8ec27952-4edc-4aab-86aa-e87bb2611832 --- server/src/test.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/server/src/test.c b/server/src/test.c index f50269481..e06901b22 100644 --- a/server/src/test.c +++ b/server/src/test.c @@ -118,10 +118,10 @@ int main(int argc, char *argv[]) case '?': if (optopt == 'c') error("Option -%c requires an argument.", optopt); - else if (isprint (optopt)) - error("Unknown option `-%c'.", optopt); + else if (isprint(optopt)) + error("Unknown option '-%c'.", optopt); else - error("Unknown option character `\\x%x'.", optopt); + error("Unknown option character '\\x%x'.", optopt); exit(1); default: abort (); @@ -130,7 +130,7 @@ int main(int argc, char *argv[]) continue; check: if (optarg == endptr) - error("Failed to parse parse option argument -%c %s", c, optarg); + error("Failed to parse parse option argument '-%c %s'", c, optarg); } if (!strcmp(argv[2], "rtt"))