diff options
| author | Adam <Adam@Anope.org> | 2010-05-24 23:36:40 -0500 |
|---|---|---|
| committer | Adam <Adam@anope.org> | 2010-06-18 21:04:05 -0400 |
| commit | 2fba686904e6f78ebab35df171c5757afeebf05d (patch) | |
| tree | 523782bccc479606206f271cd6708b2f70fe8278 /src/tools | |
| parent | 3a2c2a916a26f4fa1844e71a9f1c2fc25337fd2b (diff) | |
Burned slist, rewrote operservs XLine code
Diffstat (limited to 'src/tools')
| -rw-r--r-- | src/tools/db-convert.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/db-convert.c b/src/tools/db-convert.c index 0f8a35ebc..4e3d01034 100644 --- a/src/tools/db-convert.c +++ b/src/tools/db-convert.c @@ -969,7 +969,7 @@ int main(int argc, char *argv[]) fs << "OS AKILL " << user << " " << host << " " << by << " " << seton << " " << expires << " :" << reason << std::endl; free(user); free(host); free(by); free(reason); } - /* SGLINES */ + /* SNLINES */ read_int16(&capacity, f); for (i = 0; i < capacity; i++) { @@ -978,7 +978,7 @@ int main(int argc, char *argv[]) SAFE(read_string(&reason, f)); SAFE(read_int32(&seton, f)); SAFE(read_int32(&expires, f)); - fs << "OS SGLINE " << mask << " " << by << " " << seton << " " << expires << " :" << reason << std::endl; + fs << "OS SNLINE " << mask << " " << by << " " << seton << " " << expires << " :" << reason << std::endl; free(mask); free(by); free(reason); } /* SQLINES */ |
