]> git.stg.codes - stg.git/commitdiff
Исправлены опечатки и поправлена индентация
authorMaxim Mamontov <faust@gts.dp.ua>
Mon, 6 Dec 2010 14:29:09 +0000 (16:29 +0200)
committerMaxim Mamontov <faust@gts.dp.ua>
Mon, 6 Dec 2010 14:29:09 +0000 (16:29 +0200)
projects/stargazer/user.cpp

index 2ac865bd0b70d18514d9ef0c564bd5f7e9c765ed..2db51411b4f38af00872b1da091632474bba7f95 100644 (file)
@@ -856,11 +856,11 @@ IP_DIR_PAIR idp(ip, dir);
 
 map<IP_DIR_PAIR, STAT_NODE>::iterator lb;
 lb = traffStat.lower_bound(idp);
-if (lb == traffStat.end() || lb.first != idp)
+if (lb == traffStat.end() || lb->first != idp)
     {
     traffStat.insert(lb,
-                      pair<IP_DIR_PAIR, STAT_NODE>(idp,
-                                                   STAT_NODE(len, 0, cost)));
+                     pair<IP_DIR_PAIR, STAT_NODE>(idp,
+                                                  STAT_NODE(len, 0, cost)));
     }
 else
     {
@@ -946,11 +946,11 @@ IP_DIR_PAIR idp(ip, dir);
 
 map<IP_DIR_PAIR, STAT_NODE>::iterator lb;
 lb = traffStat.lower_bound(idp);
-if (lb == traffStat->end() || lb->first != idp)
+if (lb == traffStat.end() || lb->first != idp)
     {
-    traffStat->insert(lb,
-                      pair<IP_DIR_PAIR, STAT_NODE>(idp,
-                                                   STAT_NODE(0, len, cost)));
+    traffStat.insert(lb,
+                     pair<IP_DIR_PAIR, STAT_NODE>(idp,
+                                                  STAT_NODE(0, len, cost)));
     }
 else
     {