1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Author: Mahyuddin Susanto <udienz@ubuntu.com>
Description: Fix spelling error recieved -> received
Index: gadmin-rsync-0.1.7/src/show_info.c
===================================================================
--- gadmin-rsync-0.1.7.orig/src/show_info.c 2011-03-10 01:24:49.344217654 +0700
+++ gadmin-rsync-0.1.7/src/show_info.c 2011-03-10 01:24:47.132717740 +0700
@@ -46,13 +46,13 @@
if( content == NULL )
{
- printf("show_info recieved null content\n");
+ printf("show_info received null content\n");
return;
}
if( strlen(content) < 5 )
{
- printf("show_info recieved < 5 chars of content\n");
+ printf("show_info received < 5 chars of content\n");
return;
}
|