X-Git-Url: http://ftp.carnet.hr/carnet-debian/scm?a=blobdiff_plain;f=src%2Fos_regex%2Fos_regex_strbreak.c;h=e6905c01b250f1e6a8a0d3e9b9327f223ce5bf8f;hb=6ef2f786c6c8ead94841b5f93baf9f43421f08c8;hp=e8a4228991843ac0175eae13229b12399b8cc3e4;hpb=914feba5d54f979cd5d7e69c349c3d01f630042a;p=ossec-hids.git diff --git a/src/os_regex/os_regex_strbreak.c b/src/os_regex/os_regex_strbreak.c index e8a4228..e6905c0 100755 --- a/src/os_regex/os_regex_strbreak.c +++ b/src/os_regex/os_regex_strbreak.c @@ -5,7 +5,7 @@ * * This program is a free software; you can redistribute it * and/or modify it under the terms of the GNU General Public - * License (version 3) as published by the FSF - Free Software + * License (version 2) as published by the FSF - Free Software * Foundation */ @@ -24,7 +24,7 @@ char **OS_StrBreak(char match, char *str, int size) { int count = 0; int i = 0; - + char *tmp_str = str; char **ret; @@ -40,7 +40,7 @@ char **OS_StrBreak(char match, char *str, int size) /* Memory error. Should provice a better way to detect it */ return(NULL); } - + /* Allocating memory to null */ while(i <= size) { @@ -62,13 +62,13 @@ char **OS_StrBreak(char match, char *str, int size) goto error; } - /* Copying the string */ + /* Copying the string */ ret[count][i-1] = '\0'; strncpy(ret[count],tmp_str,i-1); tmp_str = ++str; count++; - i=0; + i=0; continue; }