summaryrefslogtreecommitdiffstats
path: root/plugins/urlize.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/urlize.c')
-rw-r--r--plugins/urlize.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/plugins/urlize.c b/plugins/urlize.c
index d3d97b5..9973c1a 100644
--- a/plugins/urlize.c
+++ b/plugins/urlize.c
@@ -14,6 +14,8 @@
14 along with this program; if not, write to the Free Software 14 along with this program; if not, write to the Free Software
15 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 15 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16 16
17 $Id$
18
17******************************************************************************/ 19******************************************************************************/
18 20
19const char *progname = "urlize"; 21const char *progname = "urlize";
@@ -69,8 +71,9 @@ main (int argc, char **argv)
69 break; 71 break;
70 case '?': 72 case '?':
71 default: 73 default:
72 usage3 (_("Unknown argument"), optopt); 74 printf (_("%s: Unknown argument: %s\n\n"), progname, optarg);
73 break; 75 print_usage ();
76 exit (STATE_UNKNOWN);
74 } 77 }
75 } 78 }
76 79
@@ -121,9 +124,6 @@ main (int argc, char **argv)
121 124
122 125
123 126
124
125
126
127void 127void
128print_help (void) 128print_help (void)
129{ 129{
@@ -159,7 +159,6 @@ You probably want:\n\
159 159
160 160
161 161
162
163void 162void
164print_usage (void) 163print_usage (void)
165{ 164{