]> git.mxchange.org Git - quix0rs-blobwars.git/blobdiff - src/CData.cpp
Cleanup .desktop file
[quix0rs-blobwars.git] / src / CData.cpp
index 12642eddc75fab3be6a6d99249c56c7b2b701156..29f1dff0e2dbbd5f0cf8645dfb14a880d00d0aea 100644 (file)
@@ -1,5 +1,5 @@
 /*
-Copyright (C) 2004 Parallel Realities
+Copyright (C) 2004-2010 Parallel Realities
 
 This program is free software; you can redistribute it and/or
 modify it under the terms of the GNU General Public License
@@ -36,8 +36,8 @@ void Data::set(const char *key, const char *value, int current, int target)
                return;
        }
 
-       strncpy(this->key, key, sizeof this->key);
-       strncpy(this->value, value, sizeof this->value);
+       strlcpy(this->key, key, sizeof this->key);
+       strlcpy(this->value, value, sizeof this->value);
        this->current = current;
        this->target = target;
 }